-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (83 loc) · 4.58 KB
/
index.html
File metadata and controls
83 lines (83 loc) · 4.58 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="pt-br">
<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">
<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=Bebas+Neue&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&family=Style+Script&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/style/commons/reset.css">
<link rel="stylesheet" href="./assets/style/app.css">
<link rel="stylesheet" href="./assets/style/pages/home.css">
<link rel="shortcut icon" href="./assets/img/favicon/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/img/favicon/favicon-16x16.png">
<link rel="manifest" href="./assets/img/favicon/site.webmanifest">
<title>Vanessa Ribeiro - Front-End Developer</title>
</head>
<body>
<header class="header-page header-page--home">
<div class="header-page__container header-page__container--mobile this-container ">
<div class="header-page__menu-icon__container">
<i class="humburger__icon icons"></i>
</div>
<nav class="header-page__menu">
<ul class="header-page__list">
</ul>
</nav>
</div>
</header>
<main class="home__profile">
<div class="this-container container--profile">
<section class="profile">
<div class="profile__main">
<figure class="profile__image-container">
<img class="profile__image img-responsive img-responsive--round" src="./assets/img/me/vanessa-ribeiro.jpg" alt="Minha foto de perfil">
</figure>
<article class="profile__content">
<header class="profile__content__header">
<h1 class="profile__content__title">vanessa ribeiro</h1>
<h2 class="profile__content__subtitle">front-end developer</h2>
</header>
<div class="profile__content__text">
<p>
Alguém que curte tecnologias web e busca melhorar suas habilidades de programação e solução de problemas, resolvendo desafios e criando pequenos projetos.
</p>
</div>
</article>
</div>
<div class="profile__footer">
<div class="profile__footer__container">
<div class="profile__footer__button-container">
<a class="button button--outlined" href="/to-download/cv-vanessa-ribeiro.pdf" download="cv-vanessa-ribeiro.pdf">Currículo</a>
</div>
<div class="profile__footer__icons-container">
<a class="profile__footer__icon-link" href="https://www.linkedin.com/in/vanribeiro" >
<img class="profile__footer__icon" src="./assets/img/icons/social-media/instagram.png" alt="Icone Instagram">
</a>
<a class="profile__footer__icon-link" href="https://www.instagram.com/vanribeiro.dev" >
<img class="profile__footer__icon" src="./assets/img/icons/social-media/linkedin.png" alt="Icone LinkedIn">
</a>
<a class="profile__footer__icon-link" href="https://github.com/vanribeiro" >
<img class="profile__footer__icon" src="./assets/img/icons/social-media/github.png" alt="Icone GitHub">
</a>
</div>
</div>
</div>
</section>
</div>
</main>
<footer class="footer footer--home"></footer>
<nav class="menu-mobile" style="display: none">
<div class="menu-mobile__close-button-container this-container">
<span class="menu-mobile__close-button">
×
</span>
</div>
<div class="menu-mobile__container this-container"></div>
</nav>
<script type="module" src="./js/index.js"></script>
</body>
</html>