forked from 4GeeksAcademy/RikrdoLeal-Instagram-photo-feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (79 loc) · 2.68 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instagram Feed</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div>
<header>
<div class="container">
<h1>BreathCode Photo Feed</h1>
</div>
</header>
<div class="container">
<div class="post">
<div class="post-header">
<div>
<h2> My First Photo</h2>
</div><div>
<span>18/02</span>
</div>
</div>
<div>
<img src="https://picsum.photos/seed/picsum/400/200"></img>
</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>#BreathCode #Stactic</strong></p></div>
</div>
</div>
</div>
<div class="container">
<div class="post">
<div class="post-header">
<div>
<h2>My Second Pic!</h2>
</div><div>
<span>16/02</span>
</div>
</div>
<div>
<img src="https://picsum.photos/400/200?grayscale"></img>
</div>
<div><p>This is the second picture of the feed, This is a grayscale picture. I am learning to code with <strong>#BreathCode #GrayScale</strong></p></div>
</div>
</div>
<div class="container">
<div class="post">
<div class="post-header">
<div>
<h2>Third Photo</h2>
</div><div>
<span>15/02</span>
</div>
</div>
<div>
<img src="https://picsum.photos/400/200/?blur"></img>
</div>
<div><p>Testing some blur images, This is a multi line comment for testing purposes. I am learning to code with <strong>#BreathCode #Blur</strong></p></div>
</div>
</div>
</div>
<div class="container">
<div class="post">
<div class="post-header">
<div>
<h2>And the fourth post</h2>
</div><div>
<span>13/02</span>
</div>
</div>
<div>
<img src="https://picsum.photos/id/237/400/200"></img>
</div>
<div><p>The last but not least fourth photo, This is a multi line comment for testing purposes. I am learning to code with <strong>#BreathCode #Puppie</strong></p></div>
</div>
</div>
</body>
</html>