-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (77 loc) · 3.33 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
<!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>Instagram Photo Feed</h1>
</div>
</header>
<div class="container">
<div class="post">
<div class="post-header">
<div>
<h2>My first photo</h2>
</div><div>
</div>
</div>
<div>
<img src="https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80"></img>
</div>
<div>
<p>This is my first photo of the feed. I'm learning to code with <strong> 4Geeks Academy :)</strong></p>
</div>
</div>
<div class="post">
<div class="post-header">
<div>
<h2>My second photo</h2>
</div><div>
<span>12/17</span>
</div>
</div>
<div>
<img src="https://images.unsplash.com/photo-1497436072909-60f360e1d4b1?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80"></img>
</div>
<div>
<p>This is my second photo of the feed. I'm learning to code with <strong> 4Geeks Academy :)</strong></p>
</div>
</div>
<div class="post">
<div class="post-header">
<div>
<h2>My third photo</h2>
</div><div>
<span>12/19</span>
</div>
</div>
<div>
<img src="https://images.unsplash.com/photo-1431794062232-2a99a5431c6c?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80"></img>
</div>
<div>
<p>This is my third photo of the feed. I'm learning to code with <strong> 4Geeks Academy :)</strong></p>
</div>
</div>
<div class="post">
<div class="post-header">
<div>
<h2>My fourth photo</h2>
</div><div>
<span>12/21</span>
</div>
</div>
<div>
<img src="https://images.unsplash.com/photo-1505765050516-f72dcac9c60e?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80"></img>
</div>
<div>
<p>This is my fourth photo of the feed. I'm learning to code with <strong> 4Geeks Academy :)</strong></p>
</div>
</div>
</div>
</div>
</body>
</html>