This repository was archived by the owner on Feb 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (77 loc) · 3.54 KB
/
index.html
File metadata and controls
77 lines (77 loc) · 3.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portifólio</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:200i,300,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
</head>
<body>
<header>
<nav id="navbar">
<ul>
<li><a href="#welcome-section">Sobre</a></li>
<li><a href="#trabalho">Trabalho</a></li>
<li><a href="#contato">Contato</a></li>
</ul>
</nav>
</header>
<main>
<section id="welcome-section">
<h1>Oi, sou Lucas Savino</h1>
<p>um desenvolvedor web</p>
</section>
<section id="trabalho">
<h2>Aqui estão alguns dos meus projetos</h2>
<div id="projects">
<a class="project" href="projects/survey_form/index.html" target="_blank">
<img alt="project-link" src="image_2023-06-17_164405480.png">
<p class="project-tile">
<span>< </span>Formulário de pesquisa<span> /></span>
</p>
</a>
<a class="project" href="projects/tribute_page/index.html" target="_blank">
<img alt="project-link" src="image_2023-06-17_164920530.png">
<p class="project-tile">
<span>< </span> Minha Timeline <span> /></span>
</p>
</a>
<a class="project" href="projects/Technical_Documentation_Page/index.html" target="_blank">
<img alt="project-link" src="image_2023-06-17_165135088.png">
<p class="project-tile">
<span>< </span> Documentação técnica <span> /></span>
</p>
</a>
<a class="project" href="projects/product_landing_page/index.html" target="_blank">
<img alt="project-link" src="image_2023-06-17_165402240.png">
<p class="project-tile">
<span>< </span> Página de destino de produto <span> /></span>
</p>
</a>
</div>
<a class="button">Mostrar tudo <i class="fas fa-chevron-right"></i></a>
</section>
<section id="contato">
<div class="trabalhar-junto">
<h2>Vamos trabalhar juntos...</h2>
<p>Como você faz seu café?</p>
</div>
<div class="contatos">
<a href="https://www.instagram.com/savino_ll/"><i class="fab fa-instagram"></i><p> Instagram</p></a>
<a href="https://github.com/savinoo"><i class="fab fa-github"></i><p> GitHub</p></a>
<a href="https://www.linkedin.com/in/lucas-lorenzo-savino-56b946179/"><i class="fab fa-linkedin"></i><p> LinkedIn</p></a>
<a href="https://mail.google.com/mail/u/1/#inbox?compose=DmwnWrRpddJdLjVLklFVvctjjplcnjCHqgKWhVrvcZjmkGsWSPRlZsMSpCPSkNCPznSbjtVBGvgG"><i class="fas fa-at"></i><p> Mandar email</p></a>
<a href="instagram.com"><i class="fab fa-whatsapp"></i><p> Whatsapp</p></a>
</div>
</section>
</main>
<footer>
<p>Todos os direitos reservados</p>
<span>© Criado por <a href="https://www.linkedin.com/in/lucas-lorenzo-savino-56b946179/" id="profile-link" target="_blank">Lucas Lorenzo Savino</a>
</span>
</footer>
</body>
</html>