-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (52 loc) · 2.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instagram Post</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="post">
<div class="post-header">
<div class="left-header">
<!--Aqui la imagen/texto superior-->
<div class="html-icon">
<i class="fa-brands fa-html5"></i>
</div>
<div class="text-header">
<p> <strong>HTML5</strong></p> <p>Rigoberto</p>
</div>
</div>
<div class="right-header">
<i class="fa-solid fa-ellipsis-vertical"></i>
</div>
</div>
<div class="post-image">
<!--aqui va la imagen del post-->
<img src="https://img.freepik.com/foto-gratis/hermosa-foto-capo-vaticano-al-atardecer-calabria-italia_181624-48951.jpg?t=st=1709144611~exp=1709148211~hmac=bfad5e47517d786561767c71e92065fe0f529d12541cbc95aed00f85506972ce&w=740" alt="Paisaje" class="image">
</div>
<div class="post-body">
<!--aqui va la linea de likes, el texto y los iconos-->
<div class="post-icons">
<div class="left-icons">
<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="right-icons">
<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>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
</div>
</div>
</body>
</html>