0% found this document useful (0 votes)
18 views4 pages

Links: Links - HTML

This document contains the code for a basic HTML website. It includes headings, paragraphs, lists, images, tables, forms, and links. The website demonstrates the use of various HTML elements to structure and layout content, including text formatting, images, tables, forms, and internal and external links.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views4 pages

Links: Links - HTML

This document contains the code for a basic HTML website. It includes headings, paragraphs, lists, images, tables, forms, and links. The website demonstrates the use of various HTML elements to structure and layout content, including text formatting, images, tables, forms, and internal and external links.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Links: links.

html
!
!

<!doctype html>
<html>
<head>
<title>My First Website</title>

!
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="A jouney of a thousand miles begins with a
single step." />

!
!
</head>

!
<body>

<a name="top"></a>

<h1>My First Website</h1>

<p>This is some content which I want to appear on<br />two lines.</p>

<p>This is a second paragraph with a neat horizontal ruled line

underneath.</p>

<hr>

<p>This paragraph has some fancy <strong>bold</strong>, <em>italic</em>,

<u>underlined</u> and <strike>struck through</strike> text.</p>


<p>This is an unordered list of my favourite foods:</p>

<ul>

<li>Tangerines</li>

<li>Rocky Road Ice Cream</li>

<li>Pizza</li>

</ul>

<p>This is an ordered list of the tallest trees in the world:</p>

<ol>

<li>Coast Redwood</li>

<li>Coast Douglas-fir </li>

<li>Eucalyptus regnans</li>

</ol>

<hr>

<p><img src="images/beach.jpg" width=300>Wish you were here?</p>

<hr>

<table>

<tr><th>Name</th><th>Age</th><th>Gender</th></tr>

<tr><td>Rob</td><td>33</td><td>Male</td></tr>

<tr><td>Kirsten</td><td>34</td><td>Female</td></tr>

<tr><td>Tom</td><td>3</td><td>Male</td></tr>

</table>

<hr>

<input type="text" placeholder="Type something here..." />

<br />

<textarea>Longer text goes here...</textarea>

<br />

<select>

<option>Choose an option...</option>

<option value="1">1</option>

<option value="2">2</option>

</select>

<br>

<input type="checkbox" /> Click me!

<br>

<input type="radio" name="options" /> Option 1

<br>

<input type="radio" name="options" /> Option 2

<br>

<input type="submit" value="Click Me!">

<hr>

<a href="helloworld.html">Click me to go to hello world!</a>

<br>

<a href="#top">Click me to go to the top of the page</a>

!
</body>
</html>

You might also like