-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeek1Debug.html
More file actions
53 lines (52 loc) · 1.17 KB
/
Week1Debug.html
File metadata and controls
53 lines (52 loc) · 1.17 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
<!-- WEEK ONE HOMEWORK -->
<!-- PART TWO -->
<!DOCTYPE html>
<html>
<head>
<title>Pet Store</title>
</head>
<body>
<header>
<h1>Paws & Claws</h1>
<nav>
<a href="#dogs">Dogs</a>
<a href="#cats">Cats</a>
</nav>
</header>
<main>
<section id="dogs">
<h2>Dogs</h2>
<ul>
<li>Golden Retriever</li>
<li>Poodle</li>
</ul>
</section>
<img src="puppy.jpg" alt="A cute golden retriever puppy">
</main>
<footer>
<p>© 2025 Paws & Claws</p>
</footer>
</body>
</html>
<!-- PART ONE -->
<!-- The Broken Code
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<div>
<h1>Welcome<h1>
<p>This is my site
<img src="photo.jpg">
<ul>
<li>Item one
<li>Item two</li>
</ul>
<a href="about.html">Learn more</a>
</p>
</div>
</body>
</html>
-->