forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (74 loc) · 3.52 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic Instagram</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="wrapper">
<div class="header">
<h1>Breathe Code Photo Feed</h1>
</div>
<div id="feed">
<div class="posts">
<div class="postsHeader">
<h3>
My first photo
</h3>
<p class="imgNumber">12/17</p>
</div>
<div class="postsImg">
<img src="https://plus.unsplash.com/premium_photo-1665952050053-31ac47c6ff4b?q=80&w=1000&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8Y3V0ZSUyMGRvZ3xlbnwwfHwwfHx8MA%3D%3D" alt="">
</div>
<div class="postsText">
<p>This is my first photo of the feed, this a multi line comment for testing porposes. I am learning to code with <span>#BreathCode</span></p>
</div>
</div>
<div class="posts">
<div class="postsHeader">
<h3>
Some cute thing
</h3>
<p class="imgNumber">12/17</p>
</div>
<div class="postsImg">
<img src="https://media-be.chewy.com/wp-content/uploads/2022/09/27101923/cute-dogs-pomeranian.jpg" alt="">
</div>
<div class="postsText">
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. <span>#BreathCode</span></p>
</div>
</div>
<div class="posts">
<div class="postsHeader">
<h3>
There is paparazzi around
</h3>
<p class="imgNumber">12/17</p>
</div>
<div class="postsImg">
<img src="https://fundeu.fiile.org.ar/uploadsfotos/paparazi__adaptacion_al_espa__ol_de_paparazzi_web.jpg" alt="">
</div>
<div class="postsText">
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Exercitationem atque temporibus maxime! Tempora, eveniet. <span>#BreathCode</span></p>
</div>
</div>
<div class="posts">
<div class="postsHeader">
<h3>
And of course... food!
</h3>
<p class="imgNumber">12/17</p>
</div>
<div class="postsImg">
<img src="https://peopleenespanol.com/thmb/xv-XKxUO3fRnBnsM7E6tdSigSLI=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/pasta-alfredo.jpg-2000-69428c009d434a03848151670738a5bc.jpg" alt="">
</div>
<div class="postsText">
<p>Lorem ipsum dolor sit amet. <span>#BreathCode</span></p>
</div>
</div>
</div>
</div>
</body>
</html>