forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 2.19 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
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instagram Post</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="https://kit.fontawesome.com/8a11f4ebf1.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div class="post">
<div class="post-header" style="
width: 100%;">
<div class="post-header-left" style="
display: flex;
width: 95%;">
<div class="ig-logo" style="
align-content: center;">
<i class="fa-brands fa-html5"></i>
</div>
<div class="name" style="
margin-left: 1rem;">
<p><strong>HTML5</strong></p>
<p>NikSol</p>
</div>
</div>
<div class="post-header-right">
<i class="fa-solid fa-ellipsis-vertical"></i>
</div>
</div>
<div class="post-img">
<img src="https://i.pinimg.com/564x/9b/71/19/9b7119a379c2f00721373235685eaea1.jpg">
</div>
<div class="post-body">
<div class="post-icons">
<div class="post-icons-left" style="
width: 97%; text-align: start;">
<i class="fa-regular fa-heart"></i>
<i class="fa-regular fa-comment"></i>
<i class="fa-regular fa-paper-plane"></i>
</div>
<div class="post-icons-right">
<i class="fa-regular fa-bookmark"></i>
</div>
</div>
</div>
<p>Liked by <strong>4Geeksacademy, html5, Web</strong> and <strong>100,000 others</strong></p>
<p>A beautiful shot of the Eiffel Tower I took on my trip to Paris in 2022.<br>#CityOfLove</br></p>
</div>
</div>
</body>
</html>