-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml-elements-lec.html
More file actions
54 lines (51 loc) · 1.07 KB
/
html-elements-lec.html
File metadata and controls
54 lines (51 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Intro to Elements</title>
</head>
<body>
<header>
<h1>Pikachu</h1>
<br>
<nav>
<!--This is where you put links to the nav bar-->
</nav>
<hr>
</header>
<section id="main-image">
<img src="img/pikachu.png" alt="Picture of Pikachu">
</section>
<main>
<input type="text">
<p>Number #: <span class="red-font"><strong>025</strong></span></p>
<section id="type">
<h2>Type</h2>
<ul>
<li>Electric</li>
</ul>
</section>
<table>
<tr>
<th>Height</th>
<th>Category</th>
<th>Weight</th>
<th>Abilities</th>
<th>Gender</th>
</tr>
<tr>
<td>1' 04"</td>
<td>Mouse</td>
<td>13.2 lbs</td>
<td>Static</td>
<td>Male/Female</td>
</tr>
</table>
</main>
<a href="https://www.pokemon.com/us/pokedex/pikachu">Learn More About Pikachu</a>
<footer>
<!--Hyperlink to take me to the top-->
<a href="#top">Back to Top</a>
</footer>
</body>
</html>