generated from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (46 loc) · 1.95 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
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="nav">BreatheCode Photo Feed</div>
<div class="Post">
<div class="header">
<h1>My First Photo</h1>
<h2>7/30</h2>
</div>
<img height="300px" width="300px" src="https://media-be.chewy.com/wp-content/uploads/2022/09/27095535/cute-dogs-pembroke-welsh-corgi.jpg"/>
<div class="caption">
<p>This is my first photo of the feed. This is a multiline comment for testing purposes. I am learning to code with <strong> #BreatheCode</strong></p>
</div>
</div>
<div class="Post">
<div class="header">
<h1>My Second Photo</h1>
<h2>7/15</h2>
</div>
<img height="300px" width="300px" src="https://blumehausfineflowers.com/cdn/shop/products/IMG_0173.jpg?v=1674515712"/>
<div class="caption">
<p>This is my second photo of the feed. Beautiful flower! I am learning to code with <strong> #BreatheCode</strong></p>
</div>
</div>
<div class="Post">
<div class="header">
<h1>My Third Photo</h1>
<h2>7/8</h2>
</div>
<img height="300px" width="300px" src="https://images.pexels.com/photos/1032650/pexels-photo-1032650.jpeg?cs=srgb&dl=pexels-travis-rupert-1032650.jpg&fm=jpg"/>
<div class="caption">
<p>This is my third photo of the feed. Beautiful beach! I am learning to code with <strong> #BreatheCode</strong></p>
</div>
</div>
<div class="Post">
<div class="header">
<h1>My Fourth Photo</h1>
<h2>7/1</h2>
</div>
<img height="300px" width="300px" src="https://static.toiimg.com/thumb/54659021.cms?imgsize=275086&width=800&height=800"/>
<div class="caption">
<p>French fries are my favorite food! I am learning to code with <strong> #BreatheCode</strong></p>
</div>
</div>
</body>