generated from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (76 loc) · 2.4 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
<!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" href="styles.css">
</head>
<body>
<header>
<h1>
Instagram
</h1>
</header>
<div class="post">
<div class="post-header">
<h2>@mikagereo<img src="Images/verificado.png" width="23" height="23"/></h2>
<p>1/1</p>
</div>
<div class="post-image">
<img src="Images/reo.jpg" alt="reo"/>
</div>
<div class="post-text">
<p>Get everything you want. <strong>#bluelock</strong></p>
</div>
</div>
<div class="post">
<div class="post-header">
<h2>@megurubachira</h2>
<p>1/1</p>
</div>
<div class="post-image">
<img src="Images/bachira.jpg" alt="bachira"/>
</div>
<div class="post-text">
<p>Es verdad, me divertía mucho. Incluso estando solo. Corría tras el balón hasta que anochecía, igual que entonces. <strong>#hashtag</strong></p>
</div>
</div>
<div class="post">
<div class="post-header">
<h2>@isagi</h2>
<p>2/3</p>
</div>
<div class="post-image">
<img src="Images/isagi.jpg" alt="isagi"/>
</div>
<div class="post-text">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores enim sint excepturi quidem beatae aperiam consectetur est et, in nisi fugiat, accusamus natus ratione tenetur debitis unde amet neque molestias! <strong>#hashtag</strong></p>
</div>
</div>
<div class="post">
<div class="post-header">
<h2>@seishironagi</h2>
<p>3/5</p>
</div>
<div class="post-image">
<img src="Images/nagi.jpg" alt="nagi"/>
</div>
<div class="post-text">
<p>I think a lot of things are annoying. <strong>#yawn</strong></p>
</div>
</div>
<div class="post">
<div class="post-header">
<h2>@itoshirin <img src="Images/verificado.png" width="23" height="23"/></h2>
<p>1/5</p>
</div>
<div class="post-image">
<img src="Images/rin.jpg" alt="rin"/>
</div>
<div class="post-text">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores enim sint excepturi quidem beatae aperiam consectetur est et, in nisi fugiat, accusamus natus ratione tenetur debitis unde amet neque molestias! <strong>#hashtag</strong></p>
</div>
</div>
</body>
</html>