-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (63 loc) · 2.17 KB
/
index.html
File metadata and controls
68 lines (63 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Abby's Website</title>
<link rel="icon" type="image/x-icon" href="./images/logos/icon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<img src="./images/mountains.JPEG" class="banner">
<div class="links">
<a href="https://dsocss.github.io/website" style="text-decoration: none;">
<img src="images/logos/DSOCSS_logo.png">
</a>
<a href="https://arthurzarins.com" style="text-decoration: none;">
<img src="images/logos/AZ_logo.png">
</a>
</div>
<div class="square profilePosition">
<img src="./images/abby.jpeg" class="profile">
</div>
<div class="extraPadding"></div>
<div class="textBody">
<h1>Hi, I'm Abby!</h1>
<p>I am a Labrador Retriever that lives in California.</p>
<p>Most of my life is spent eating, playing, and sleeping. I have a very happy life!</p>
<p>I used to know how to roll over, but I have since forgotten how to do it. I can however shake people by the
paw and walk backwards.</p>
<p>Here are some pictures of me and my friends:</p>
<div class="imageReel">
<img src="./images/play.png">
<img src="./images/friends.jpeg">
<img src="./images/puppy.JPEG">
<a href="./pages/sleeping.html">
<img src="./images/abby1.JPEG">
</a>
<img src="./images/abby2.JPEG">
</div>
</div>
<div class="flexContainer textBody">
<div>
<h2>Favorite Foods</h2>
<p>Beef</p>
<p>Kale</p>
<p>Blueberries</p>
</div>
<div>
<h2>Hobbies</h2>
<p><a href="./pages/sleeping.html">Sleeping</a></p>
<p>Walking</p>
<p>Eating</p>
</div>
</div>
<div style="text-align: center; margin: 20px;">
<p>Thank you for visiting my website!</p>
</div>
<div class="footer">
<p>Website © Abby and Arthur Zarins
<br>2024
</p>
</div>
</body>
</html>