-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (34 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/main.css">
<title>My personal website</title>
</head>
<body>
<nav class="navbar">
<h3 class="navbar-title">Marlon Flores</h3>
<div class="navbar-icons">
<img class="navbar-icon" src="./img/icons8-whatsapp.svg" alt="Whatsapp Icon">
<img class="navbar-icon" src="./img/icons8-instagram.svg" alt="Instagram Icon">
</div>
</nav>
<header class="header">
<div class="header-container">
<h1 class="header-title">Agregar un titulo sobre ustedes</h1>
<p class="header-subtitle">Agregar un subtitulo sobre ustedes</p>
</div>
</header>
<section class="about">
<div class="about-container-text">
<h1 class="about-title">Sobre mi...</h1>
</div>
<div class="about-container-img">
<img class="about-img" src="https://res.cloudinary.com/dp8gxg4mp/image/upload/v1721153199/IMG_7072_uumbxi.jpg" alt="">
<img class="about-img" src="https://res.cloudinary.com/dp8gxg4mp/image/upload/v1721153206/IMG_9463_hurvdc.jpg" alt="">
<img class="about-img" src="https://res.cloudinary.com/dp8gxg4mp/image/upload/v1721153217/IMG_9085_lcycue.jpg" alt="">
</div>
</section>
</body>
</html>