U Tips for transferring files Oregon State If you cannot write or save over files, your permissions are wrong. Set your Filezilla preferences to give yourself write permission In Windows, set your file explorer to show file extensions. Otherwise, your text editor is going to call everything a .txt file, instead of a php"file You can also drag-drop from file explorer to the right side of filezilla
Tips for transferring files • If you cannot write or save over files, your permissions are wrong. Set your Filezilla preferences to give yourself write permission. • In Windows, set your File Explorer to show file extensions. Otherwise, your text editor is going to call everything a ".txt" file, instead of a ."php" file • You can also drag-drop from File Explorer to the right side of Filezilla
OSUActivity Oregon State Post your first web page
Activity • Post your first web page
OSU Some common tags Oregon State <h1>REALLY big text</h1> <h2>Big text</h2> <h3>Kind of big texts/h3> <em>emphasis</ em> <p>paragraph</p> <div>a division like a paragraph but usually without spacing around its/div> <span>a span, ie a part ot a division</span>
Some common tags <h1>REALLY big text</h1> <h2>Big text</h2> <h3>Kind of big text</h3> <em>emphasis</em> <p>paragraph</p> <div>a division, like a paragraph but usually without spacing around it</div> <span>a span, ie a part of a division</span>
OSU Making lists of stuff Oregon State <u> <li>item A</li> <li>item b</li> <li>item C</i> /u> <o|> <li>item one</li> <li>item two</i> <li>item threes/li> </o>
Making lists of stuff <ul> <li>item A</li> <li>item B</li> <li>item C</li> </ul> <ol> <li>item one</li> <li>item two</li> <li>item three</li> </ol>
OSU Laying out tables <table> <tr><td>row 1, col 1</td> <td>row 1, col 2</td>s/tr> <tr><td>row 2, col 1</td> <td>row 2, col 2</td></tr> <tr><td colspan=2>row 3, cols 1-2</td> </table> There's also a th you can use instead of td if the cell is basically a header read more online if you like at W3 Schools
Laying out tables <table> <tr><td>row 1, col 1</td> <td>row 1, col 2</td></tr> <tr><td>row 2, col 1</td> <td>row 2, col 2</td></tr> <tr><td colspan="2">row 3, cols 1-2</td> </tr> </table> There's also a th you can use instead of td if the cell is basically a header. Read more online if you like at W3 Schools