-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 2.11 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carlos Guzmán | Portafolio</title>
<!-- normalize css-->
<link rel="stylesheet" href="assets/css/normalize-8.0.1.css">
<!-- fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;700&display=swap" rel="stylesheet">
<!-- estilos CSS -->
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<div class="container">
<header class="header">
<nav class="nav">
<a class="nav__link" href="#"><i class="far fa-moon"></i></a>
<a class="nav__link" href="#"><i class="fas fa-bars"></i></a>
</nav>
</header>
<main class="main">
<img class="main__img" src="assets/img/user-1.png" alt="Imagen del usuario">
<h1 class="main__h1"><strong>Hola</strong>, ¿En que te puedo ayudar?</h1>
<p class="main__parrafo">Mi nombre es <strong><em>Carlos Guzmán</em></strong>, soy un apasionado por las tecnologías de la información y comunicaciones, además entusiasta por el <a class="main__link" href="https://es.wikipedia.org/wiki/Software_libre" target="_blank">Open Source</a> y el desarrollo frontend, backend y devops.</p>
</main>
<section class="social">
<h2 class="social__h2">Puedes encontrame en</h2>
<div class="social__div">
<a class="social__link" href="https://facebook.com/cags84" target="_blank"><i class="fab fa-facebook"></i></a>
<a class="social__link" href="https://twitter.com/cguzman84" target="_blank"><i class="fab fa-twitter"></i></a>
<a class="social__link" href="https://github.com/cags84/" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://gitlab.com/cags84" target="_blank"><i class="fab fa-gitlab"></i></a>
</div>
</section>
</div>
<!-- Script JS -->
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/f2db0bb37e.js" crossorigin="anonymous"></script>
<script src="assets/js/app.js"></script>
</body>
</html>