forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (68 loc) · 2.01 KB
/
index.html
File metadata and controls
93 lines (68 loc) · 2.01 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Instagram Photo Feed con HTML/CSS</title>
</head>
<body>
<div class="head">
<h1>Breathe Code Photo Feed</h1>
</div>
<br>
<div class="post">
<div class="post-head">
<h2 class="post-title">My first photo</h2>
<h2 class="post-date">12/14</h2>
</div>
<div class="post-body">
<img src="dog1.jpg" alt="Picture of a dog">
</div>
<div class="post-foot">
<p>This is my first photo of the feed, this is a multi line comment for testing purposes. I am
learning to code.</p>
</div>
</div>
<br>
<div class="post">
<div class="post-head">
<h2 class="post-title">Some cute thing</h2>
<h2 class="post-date">12/17</h2>
</div>
<div class="post-body">
<img src="Dog2.jpg" alt="Picture of a cute dog">
</div>
<div class="post-foot">
<p>A picture of a cute dog.</p>
</div>
</div>
<br>
<div class="post">
<div class="post-head">
<h2 class="post-title">At work</h2>
<h2 class="post-date">12/18</h2>
</div>
<div class="post-body">
<img src="Working.png" alt="Picture o a man working with his laptop">
</div>
<div class="post-foot">
<p>A day at work.</p>
</div>
</div>
<br>
<div class="post">
<div class="post-head">
<h2 class="post-title">Having lunch</h2>
<h2 class="post-date">12/20</h2>
</div>
<div class="post-body">
<img src="Food.avif" alt="Picture of a dish with food">
</div>
<div class="post-foot">
<p>Having lunch in a fancy Italian restaurant.</p>
</div>
</div>
<br>
</body>
</html>