HTML Basics
Basic HTML Page
<!doctype html>
<html>
<head>
<title>Basic HTML Web Page Template</title>
</head>
<body>
<div>Web Page Content</div>
</body>
</html>
Creating unordered list.
<ul>
<li>Pine</li>
<li>Oak</li>
<li>Elm</li>
</ul>
Creating ordered list.
<ol>
<li>Pine</li>
<li>Oak</li>
<li>Elm</li>
</ol>
Creating a table.
<table>
<tr>
<th>Airport Code</th>
<th>Common Name/City</th>
</tr>
<tr>
<td>CWA</td>
<td>Central Wisconsin Airport</td>
</tr>
<tr>
<td>ORD</td>
<td>Chicago O’Hare</td>
</tr>
<tr>
<td>LHR</td>
<td>London Heathrow</td>
</tr>
</table>
Linking to another page.
<p>Link to my <a href="http://37.139.31.138/">server home page.</a></p>
Adding Images to webpage.
<img src="path_to_image.png" alt="image description">
<!doctype html>
<html>
<head>
<title>Basic HTML Web Page Template</title>
</head>
<body>
<div>Web Page Content</div>
</body>
</html>
Creating unordered list.
<ul>
<li>Pine</li>
<li>Oak</li>
<li>Elm</li>
</ul>
Creating ordered list.
<ol>
<li>Pine</li>
<li>Oak</li>
<li>Elm</li>
</ol>
Creating a table.
<table>
<tr>
<th>Airport Code</th>
<th>Common Name/City</th>
</tr>
<tr>
<td>CWA</td>
<td>Central Wisconsin Airport</td>
</tr>
<tr>
<td>ORD</td>
<td>Chicago O’Hare</td>
</tr>
<tr>
<td>LHR</td>
<td>London Heathrow</td>
</tr>
</table>
Linking to another page.
<p>Link to my <a href="http://37.139.31.138/">server home page.</a></p>
Adding Images to webpage.
<img src="path_to_image.png" alt="image description">
Comments
Post a Comment