-
Notifications
You must be signed in to change notification settings - Fork 1
/
page2.html
50 lines (45 loc) · 1.28 KB
/
page2.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Catalog</title>
<meta charset="UT-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>N9NE LIVES CATALOG</h1>
<div class="column1">
<div class="item">
<h3>
dogs of all shapes, sizes, and barks vote best cat names for 2023
</h3>
<ul style="list-style-type:square;">
<li>fluffmeister</li>
<li>fluffy furball</li>
<li>fluffy fluffster</li>
<li>fluffy</li>
<li>bob</li>
</ul>
</div>
<div class="item">
<h3>
tune in next week for the cats vs. dog teeth-brushing contest!
</h3>
</div>
<div class="item">
<a href="index.html" class="link">i'm lost; go back home</a>
</div>
</div>
<div class="column2">
<div class="item">
<h3>confused dog sadly ponders over reasons why there are so many animals without homes</h3>
<figure>
<img class="doggy" src="https://i.imgur.io/Hj4ZjI4_d.webp?maxwidth=640&shape=thumb&fidelity=medium">
<figcaption>will someone adopt me? please?</figcaption>
</figure>
<hr>
<div class="sticker" id="cats">have a heart, adopt a <a href="">furry creature</a>!</div>
<img src="dogrobot.png" id="dogrobot">
</div>
</div>
</body>
</html>