forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.48 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
<!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="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Sevillana&display=swap" rel="stylesheet">
<title>Instagram</title>
</head>
<body>
<div id="padre">
<div id="header">
<h1><b>Breathe Code Photo Feed</b></h1>
</div>
<div id="body1">
<div id="body-header1">
<h2><b>My first photo</b></h2>
<span>12/14</span>
</div>
<div id="body-body1">
<img class="ajuste" src="https://i.pinimg.com/originals/23/0d/be/230dbe593176d59bc83350a2ed0937ae.jpg">
</div>
<div id="body-footer1">
<p>This is my first photo of the feed. This is a multi line comment for testing purposes. I'm learning to code with #Breathe Code.</p>
</div>
</div>
<br>
<div class="body2-3">
<div id="body-header2">
<h2><b>Some cute thing</b></h2>
<span>12/17</span>
</div>
<div id="body-body2">
<img class="ajuste" src="https://m.media-amazon.com/images/I/61XCOwmOcXL._AC_UF350,350_QL80_.jpg">
</div>
<div id="body-footer2">
<p>The internet is amazing and you can find very cute images like this one..</p>
</div>
</div>
<br>
<div class="body2-3">
<div id="body-header3">
<h2><b>There's a paparazzi around</b></h2>
<span>12/17</span>
</div>
<div id="body-body3">
<img class="ajuste" src="https://img.freepik.com/foto-gratis/mujer-negocios-portatil-cafeteria_23-2148002385.jpg">
</div>
<div id="body-footer3">
<p>A Paparazzi inside a restaurant with Mac taking a photos, don't let her see you!</p>
</div>
</div>
<br>
<div id="body4">
<div id="body-header4">
<h2><b>And of course...food!</b></h2>
<span>12/17</span>
</div>
<div id="body-body4">
<img class="ajuste" src="https://www.allrecipes.com/thmb/N3hqMgkSlKbPmcWCkHmxekKO61I=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/Easyspaghettiwithtomatosauce_11715_DDMFS_1x2_2425-c67720e4ea884f22a852f0bb84a87a80.jpg">
</div>
<div id="body-footer4">
<p>Delicious! ¿Would you like to taste it? If you ask me, I'd like to try it.</p>
</div>
</div>
<br>
</div>
</body>
</html>