-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 loc) · 2.15 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="es-mx">
<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>Portafolio</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header class="header">
<nav class="header__menu">
<a class="header__menu__link" href="index.html">Home</a>
<a class="header__menu__link" href="about.html">Sobre mí</a>
</nav>
</header>
<main class="presentacion">
<section class="presentacion__contenido">
<h1 class="presentacion__contenido__titulo">
Eleve tu negocio digital a otro nivel
<strong class="titulo-destaque">con un Front-end de calidad!
</strong></h1>
<p class="presentacion__contenido__texto">¡Hola! Soy Ana García, desarrolladora Front-end con
especialización en React, HTML y CSS. Ayudo a pequeños
negocios y diseñadores a llevar a cabo buenas ideas.
¿Hablamos?
</p>
<div class="presentacion__enlaces">
<h2 class="presentacion__enlaces__subtitulo">Accede a mis redes</h2>
<a class="presentacion__enlaces__link" href="https://github.com/">
<img src="./assets/github.png">
Github
</a>
<a class="presentacion__enlaces__link" href="https://linkedin.com/in/">
<img src="./assets/linkedin.png">
Linkedin
</a>
<a class="presentacion__enlaces__link" href="https://twitch.tv/">
<img src="./assets/twitch.png">
Twitch
</a>
</div>
</section>
<img class="presentacion__imagen" src="./assets/imagen.png" alt="Foto de Ana García desarrolando un proyecto">
</main>
<footer class="footer">
<p>Desarrollado por Alura Latam</p>
</footer>
</body>
</html>