forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (58 loc) · 2.07 KB
/
index.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
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>My Photo Feed</title>
</head>
<body>
<header>
<h1>Breathe Code Photo Feed</h1>
</header>
<section>
<div class="box">
<div class="header">
<h2>My First Photo</h2>
<p class="date"><strong>1/14/24</strong></p>
</div>
<div class="img"><img src="https://dogsbestlife.com/wp-content/uploads/2022/06/cutest-dog-breeds-scaled-e1655990275393.jpeg">
</div>
<div class="description">The loyalty of a dog is a pure and unbreakable bond, a silent promise of companionship and protection for life. <strong> #K9.</strong>
</div>
</div>
<div class="box">
<div class="header">
<h2>My Second Photo</h2>
<p class="date"><strong>1/14/24</strong></p>
</div>
<div class="img"><img src="https://www.petlandflorida.com/wp-content/uploads/2019/09/Petland_Florida_Bichon_Frise-768x512.jpg">
</div>
<div class="description">A dog's loyalty knows no bounds, steadfastly beside their human through every joy and sorrow.<strong> #K9.</strong>
</div>
</div>
<div class="box">
<div class="header">
<h2>My Third Photo</h2>
<p class="date"><strong>1/14/24</strong></p>
</div>
<div class="img"><img src="https://www.petlandflorida.com/wp-content/uploads/2019/09/Petland_Florida_Golden_retriever-1-768x510.jpg">
</div>
<div class="description">In the eyes of a loyal dog, their human is their universe, unwavering in devotion and love.<strong> #K9.</strong>
</div>
</div>
<div class="box">
<div class="header">
<h2>My Fourth Photo</h2>
<p class="date"><strong>1/14/24</strong></p>
</div>
<div class="img"><img src="https://www.petlandflorida.com/wp-content/uploads/2019/09/Petland_Florida_Cockapoo-768x576.jpg">
</div>
<div class="description">Unconditional and enduring, a dog's loyalty is a timeless testament to the depth of their fidelity and trust.<strong> #K9.</strong>
</div>
</div>
</section>
<footer>
</footer>
</body>
</html>