forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div class="header">
<h1>Breath Code Photo Feed</h1>
</div>
<div class="container">
<div class="post-header">
<h4 class="title">my first post</h4>
<p class="date">5/22/24</p>
</div>
<img src="https://cdn.pixabay.com/photo/2020/08/16/08/47/dog-5492194_1280.jpg" style="width: 400px; height: 400px;">
<p class="comment">here is a dog</p>
</div>
<div class="container">
<div class="post-header">
<h4 class="title">my second post</h4>
<p class="date">5/25/24</p>
</div>
<img src="https://cdn.pixabay.com/photo/2018/05/10/22/42/ice-cream-3389010_1280.jpg" style="width: 400px; height: 400px;">
<p class="comment">here we've got ice cream</p>
</div>
<div class="container">
<div class="post-header">
<h4 class="title">my third post</h4>
<p class="date">5/26/24</p>
</div>
<img src="https://cdn.pixabay.com/photo/2014/12/13/14/01/electric-guitar-566578_1280.jpg" style="width: 400px; height: 400px;">
<p class="comment">this is a photo of a guitar</p>
</div>
<div class="container">
<div class="post-header">
<h4 class="title">here is my 4th post</h4>
<p class="date">5/28/24</p>
</div>
<img src="https://cdn.pixabay.com/photo/2021/01/31/20/55/dog-5968534_1280.jpg" style="width: 400px; height: 400px;">
<p class="comment">This also looks like a dog</p>
</div>
</body>
</html>