forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (84 loc) · 3.16 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
<!DOCTYPE html>
<html>
<head>
<title>Instagram Feed</title>
</head>
<link rel="stylesheet" type="text/css" href="styles.css">
<body>
<div>
<div class="container">
<header>
<h1>4GeeksAcademy Photo Feed</h1>
</header>
</div>
<div class="container">
<div class="post">
<div class="post-header">
<div>
<h2>My First Photo</h2>
</div><div>
<span>1/1</span>
</div>
</div>
<div>
<img src="https://media.istockphoto.com/id/1460537153/photo/a-golden-retriever-running-with-her-ball-in-yard-by-a-tree-5-year-old.jpg?s=1024x1024&w=is&k=20&c=edMHVhcYWzssMwhmZt7HRO2OmF064uUldrH0pEcTJHc="></img>
</div>
<div>
<p>This is the first image in my photo feed. This is a multiline comment for testing purposes. I am learning to code with <strong>#4GeeksAcademy</strong></p>
</div>
</div>
</div>
<div class="container">
<div class="post">
<div class="post-header">
<div>
<h2>Some cute little thing</h2>
</div><div>
<span>1/3</span>
</div>
</div>
<div>
<img src="https://media.istockphoto.com/id/467923438/photo/silly-dog-tilts-head-in-front-of-barn.jpg?s=1024x1024&w=is&k=20&c=9H80IiVbNtbriSafDQhU2JqxaxeRK2-Wkdb6_LMiAJM="></img>
</div>
<div>
<p>The internet approves of this cute dog <strong>#4GeeksAcademy</strong></p>
</div>
</div>
</div>
<div class="container">
<div class="post">
<div class="post-header">
<div>
<h2>And of course... food!</h2>
</div><div>
<span>1/3</span>
</div>
</div>
<div>
<img src="https://media.istockphoto.com/id/1214978630/photo/char-grilled-ribeye-steak-with-thyme-and-rosemary-with-bacon-wrapped-jumbo-shrimp-or-prawns.jpg?s=1024x1024&w=is&k=20&c=bIaxaMXs47Q-eQq1Rx9Q9-D8Tf7iFNX2JI7yW6XpRiY="></img>
</div>
<div>
<p>This is how you do dinner right <strong>#4GeeksAcademy</strong></p>
</div>
</div>
</div>
<div class="container">
<div class="post">
<div class="post-header">
<div>
<h2>Natural enemies</h2>
</div><div>
<span>1/5</span>
</div>
</div>
<div>
<img src="https://media.istockphoto.com/id/1364253107/photo/dog-and-cat-as-best-friends-looking-out-the-window-together.jpg?s=1024x1024&w=is&k=20&c=aaX7bkXdt-2liXXMuREbAleqAPWM3YzZzf_g_1pBSLQ="></img>
</div>
<div>
<p>Or best friends...?!? <strong>#4GeeksAcademy</strong></p>
</div>
</div>
</div>
</div>
</body>
</html>