generated from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (90 loc) · 3.67 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<title>Instagram Feed </title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div>
<header>
<div class="container">
<h1>BreatheCode Photo Feed</h1>
</div>
</header>
<div class="container">
<div class="post">
<div>
<div id="post-header">
<div id="post-header_right">
<h2>First Photo</h2>
</div>
<div id="post-header_left">
<span>12/14</span>
</div>
</div>
</div>
<div>
<img src="https://loremflickr.com/640/360?lock=30" alt="">
</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>
<div id="post-header">
<div id="post-header_right">
<h2>Some cute thing</h2>
</div>
<div id="post-header_left">
<span>12/14</span>
</div>
</div>
</div>
<div>
<img src="https://loremflickr.com/320/240/dog?lock=55" alt="">
</div>
<div>
<p>The Internet approves this cute dog <strong>#BreatheCode</strong></p>
</div>
</div>
<div class="post">
<div>
<div id="post-header">
<div id="post-header_right">
<h2>There's a paparazzi around</h2>
</div>
<div id="post-header_left">
<span>12/17</span>
</div>
</div>
</div>
<div>
<img src="https://loremflickr.com/320/240/laptop?lock=6" alt="">
</div>
<div>
<p>This is me waiting for the screen to show my awesome first made at <strong>#BreatheCode</strong></p>
</div>
</div>
<div class="post">
<div>
<div id="post-header">
<div id="post-header_right">
<h2>And of course... Food </h2>
</div>
<div id="post-header_left">
<span>12/17</span>
</div>
</div>
</div>
<div>
<img src="https://loremflickr.com/320/240/food?lock=40" alt="">
</div>
<div>
<p>Because no photo feed is cool without some food on it! <strong>#BreatheCode</strong></p>
</div>
</div>
</div>
</div>
</body>
</html>