forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (80 loc) · 2.94 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instagram</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div>
<header>
<div class="container">
<h1> Breathe Code Photo Feed</h1>
</div>
</header>
<div class="container">
<div class="post">
<div class="post-header">
<div id="right">
<h2>First Photo</h2>
</div><div id="left">
<span>12/14</span>
</div>
</div>
<div>
<img src="https://picsum.photos/400/200"/>
</div>
<div>
<p>This is my first photo of the feed. This is a multi line comment for testing purposes. I am learning to code with <strong>#BreatheCode</strong></p>
</div>
</div>
<div class="post">
<div class="post-header">
<div id="right">
<h2>Some cute thing</h2>
</div><div id="left">
<span>12/17</span>
</div>
</div>
<div>
<img src="https://picsum.photos/id/237/400/200"/>
</div>
<div>
<p>The internet approves this cute dog...<strong>#BreatheCode</strong></p>
</div>
</div>
<div class="post">
<div class="post-header">
<div id="right">
<h2>There's a paparazzi around</h2>
</div><div id="left">
<span>12/17</span>
</div>
</div>
<div>
<img src="https://fastly.picsum.photos/id/1/5000/3333.jpg?hmac=Asv2DU3rA_5D1xSe22xZK47WEAN0wjWeFOhzd13ujW4"/>
</div>
<div>
<p>This is me waiting for the screen to show my awesome first website made at <strong>#BreatheCode</strong></p>
</div>
</div>
<div class="post">
<div class="post-header">
<div id="right">
<h2>And of course... drinks!</h2>
</div><div id="left">
<span>12/17</span>
</div>
</div>
<div>
<img src="https://fastly.picsum.photos/id/7/4728/3168.jpg?hmac=c5B5tfYFM9blHHMhuu4UKmhnbZoJqrzNOP9xjkV4w3o"/>
</div>
<div>
<p>Because no photo feed is cool without some drinks on it! <strong>#BreatheCode</strong></p>
</div>
</div>
</div>
</div>
</body>
</html>