-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (109 loc) · 4.11 KB
/
index.html
File metadata and controls
111 lines (109 loc) · 4.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Morning Glory</title>
</head>
<body>
<header>The Ultimate Guide to Lord of the Rings</header>
<p>If you are a Lord of the Rings fanatic welcome to the best page page for lord of rings!</p>
<header>
<!--Nav Bar-->
<nav>
<ul>
<li><a href="#">MORNING GLORY</a></li>
<li><a href="#">ABOUT</a></li>
<li><a href="#">SERVICES</a></li>
</ul>
</nav>
</header>
<main>
<ol>
<li>The Fellowship of the Ring</li>
<li>The Two Towers</li>
<li>The Return of the King</li>
</ol>
<!-- Start of the table task -->
<!-- Convert the following text into a proper table -->
<!-- Remember to use table container, table header, table body and other proper and semantic elements like th, td, and tr. Optionally, you can add a table caption. -->
<table>
<tr>
<th><b>Name</b></th>
<th><b>Race</b></th>
<th><b>Characteristics</b></th>
</tr>
<tr>
<td>Aragorn</td>
<td>Man</td>
<td>The heir to the throne of Gondor</td>
</tr>
<tr>
<td>Elrond<td>
<td>Elf</td>
<td>The Lord of Imladris, also called Rivendell</td>
</tr>
<tr>
<td>Frodo</td>
<td>Hobbit</td>
<td>The ring-bearer</td>
</tr>
<tr>
<td>Galadriel</td>
<td>Elf</td>
<td>An elf queen known as the Lady of the Woods of Lothlórien</td>
</tr>
<tr>
<td>Gandalf</td>
<td>Wizard</td>
<td>An Istari Wizard and the possessor of one of the three Elf rings</td>
</tr>
<tr>
<td>Gimli</td>
<td>Dwarf</td>
<td>A bearded, ax-wielding warrior</td>
</tr>
<tr>
<td>Legolas</td>
<td>Elf</td>
<td>The King of the Elves of Northern Mirkwood</td>
</tr>
<tr>
<td>Saruman</td>
<td>Wizard</td>
<td>The first of the Istari Wizards</td>
</tr>
</table>
<!-- End of the table task -->
<form>
<fieldset>
<legend>Choose your character</legend>
<img
src="public/images/ba8uagoc71t61.jpg"
alt="LOTR character toys"
width="280"
/>
<br />
<input type="radio" name="character" id="men" />
<label for="men">Men</label>
<input type="radio" name="character" id="wizard" />
<label for="wizard">Wizard</label>
<input type="radio" name="character" id="dwarf" />
<label for="dwarf">Dwarf</label>
<input type="radio" name="character" id="elf" />
<label for="elf">Elf</label>
</fieldset>
<button> Submit </button>
</form>
</main>
<footer>
<a href="https://en.wikipedia.org/wiki/The_Lord_of_the_Rings" target="_blank">
Learn more about LOTR - Wikipedia
</a>
<br>
<a href="mailto:lotrfans@fakeemail.com">lotrfans@fakeemail.com</a>
<br>
<a href=tel:"+5551234567">(555) 123-45-67</a>
</footer>
</body>
</html>