HTML
What I have done with HTML in Lesson |
|
<!DOCTYPE html>
<html>
<!--The title-->
<head>
<title>HTML Tutorial</title>
</head>
<!--Everything that appears on the page-->
<body>
<!--This is a heading-->
<h1>HTML Tutorial</h1>
<!--This is a paragraph-->
<p>My name is Jake Dudson.<br> I am currently working on this document at Leeds City College, Quarry Hill Campus.</p>
<p>The game I am currently playing is Borderlands 3</p>
<!--This is a link thats connected to an image-->
<a href="https://borderlands.com/en-US/">
<img src="borderlands-3-logo.jpg" width="25%" height="25%"/>
</a>
<!--This is a heading-->
<h3>Things I Enjoy:</h3>
<!--This is a numerical list-->
<ol>
<li>Gaming on PS4</li>
<li>Talking with Friends</li>
<li>Watching Films and Shows</li>
</ol>
<!--This is a heading-->
<h4>This document includes:</h4>
<!--This is a bullet-point list-->
<ul>
<li>Getting Started</li>
<li>Tags, Attributes, Elements</li>
<li>Page Titles</li>
<li>Paragraphs</li>
<li>Headings</li>
<li>Lists</li>
<li>Links</li>
<li>Images</li>
<li>Tables</li>
<li>Forms</li>
</ul>
<h4>This is a Table</h4>
<!--This is a table-->
<table>
<tr>
<td>Row 1, Cell 1</td>
<td>Row 1, Cell 2</td>
<td>Row 1, Cell 3</td>
</tr>
<tr>
<td>Row 2, Cell 1</td>
<td>Row 2, Cell 2</td>
<td>Row 2, Cell 3</td>
</tr>
<tr>
<td>Row 3, Cell 1</td>
<td>Row 3, Cell 2</td>
<td>Row 3, Cell 1</td>
</tr>
</table>
<h4>Contact Me</h4>
<!--This is a Form-->
<form>
<p>Email: <input type="text">
Query: <textarea rows="1" cols="25"></textarea>
<input type="submit"></p>
</form>
</body>
</html>