-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (73 loc) · 3.04 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
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>Portfólio do Chico</title>
<link rel="stylesheet" href="build/styles/main.css">
<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=Play:wght@400;700&family=Tiro+Gurmukhi:ital@0;1&display=swap"
rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<img class="profile-avatar" src="./src/icons/300822550_560153119500389_7204036766844363542_n.jpg">
<div class="profile-bio">
<h1 class="profile-bio-name">Olá, sou o Chico!</h1>
<h2 class="profile-bio-subtitle">Desenvolvedor Front End | Web</h2>
<p class="profile-bio-description">Cursando Sistemas de Informação pelo IFPR – Instituto Federal do Paraná | campus Palmas. Também estou no caminho da formação Full Stack Python pela EBAC – Escola Britânica de Artes Criativas e Tecnologia.</p>
</div>
</header>
<nav>
<ul class="social-links">
<li>
<a href="https://www.instagram.com/luizchico_/">
<img src="./src/icons/instagram.svg" alt="Logo do instagram">
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/lluizfkmchico/">
<img src="./src/icons/linkedin.svg" alt="Logo do linkedin">
</a>
</li>
<li>
<a href="https://github.com/LuizFKM">
<img src="./src/icons/github.svg" alt="Logo do github">
</a>
</li>
<li>
<a href="">
<img src="./src/icons/mail.svg" alt="Logo de e-mail">
</a>
</li>
</ul>
</nav>
<nav>
<ul class="projects-list">
<li class="projects-list-item">
<a href="https://entrelinhas-bar.vercel.app">
Visite o projeto "Entrelinhas & Taças"
</a>
</li>
<li class="projects-list-item">
<a href="https://aquarela-page.vercel.app">
Visite o projeto "Aquarela Festas"
</a>
</li>
<li class="projects-list-item">
<a href="https://agenda-contatos-lfkm.vercel.app/">
Visite o projeto "Agenda de contatos"
</a>
</li>
<li class="projects-list-item">
<a href="https://petconsumo.vercel.app/">
Visite o projeto "Consumo do pet"
</a>
</li>
</ul>
</nav>
</div>
</body>
</html>