-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml-elements-lec.html
More file actions
57 lines (56 loc) · 1.59 KB
/
Copy pathhtml-elements-lec.html
File metadata and controls
57 lines (56 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML Elements</title>
<link rel="stylesheet" href="css/selectors-properties.css">
</head>
<body>
<header>
<h1>Charmander</h1>
<br>
<nav>
<a href="https://www.pokemon.com/us/pokedex/charmander">Learn more about Charmander</a>
<a href="https://www.google.com">Google</a>
</nav>
<hr>
</header>
<section id="main-image">
<img src="img/charmander-image.png" alt="Picture of Charmander">
</section>
<main>
<p>Number: <span class="red-font"><strong>004</strong></span></p>
<section id="type">
<h2>Type</h2>
<ul class="orange-bg">
<li>Fire</li>
</ul>
</section>
<table>
<tr class="table-info">
<th>Height</th>
<th>Weight</th>
<th>Gender</th>
<th>Category</th>
<th>Abilities</th>
</tr>
<tr>
<td>2' 00"</td>
<td>18.7 lbs</td>
<td>neutral</td>
<td>Lizard</td>
<td>Blaze</td>
</tr>
</table>
</main>
<div id="parent-div">
<h2>Am I a descendant of divs?</h2>
</div>
<!--Hyperlink to take me to section with the ID of type-->
<footer>
<a href="#top" id="back-to-top">Back to Top</a>
</footer>
<script src="js/html-elements-lec.js"></script>
<h1 class="orange-bg underline" id="blue-bg">This is also red.</h1>
</body>
</html>