-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
163 lines (136 loc) · 5.89 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!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">
<title>PORTFOLIO</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
<input type="checkbox" id="ativar-dark" class="ativar-dark">
<div class="dark-mode">
<!-- CABEÇALHO -->
<header>
<div class="container">
<label for="ativar-dark">
<span></span>
</label>
<div class="linha">
<!-- CAIXA FOTO DE PERFÍL -->
<div class="coluna coluna-esquerda">
<figure>
<img src="imagens/sem-imagem-avatar.png" Hudson Carolino ">
<figcaption class="hidden ">Hudson Carolino</figcaption>
</figure>
</div>
<!-- INFORMAÇÕES PESSOAIS -->
<div class="coluna coluna-direita ">
<h1>Derik da Graça Reani</h1>
<p>Estudante do Ensino Médio</p>
<ul>
<li>
<a href="mailto:[email protected] ">[email protected]</a>
</li>
<li>
<a href="tel:55419999999 ">(11) 98830-5844</a>
</li>
<li>
<a href="https://www.google.com/maps/place/Av.+S%C3%A3o+Lucas,+198+-+Parque+Sao+Lucas,+S%C3%A3o+Paulo+-+SP,+03239-000/@-23.5946042,-46.5494434,17z/data=!3m1!4b1!4m5!3m4!1s0x94ce5d07847feb25:0xfaf36858ffd54152!8m2!3d-23.5946042!4d-46.5472547 ">Av. São Lucas, 198 - Parque Sao Lucas</a>
</li>
</ul>
</div>
</header>
<main>
<div class="container ">
<div class="linha ">
<!-- CONTEÚDO LADO ESQUERDO -->
<div class="coluna coluna-esquerda ">
<section>
<span class="topo-direita "></span>
<h2>Perfil Profissional</h2>
<p>VAZIO</p>
<span class="baixo-esquerda "></span>
</section>
<section>
<span class="topo-direita "></span>
<h2>Especialidades:</h2>
<ul>
<li>VAZIO</li>
</ul>
<span class="baixo-esquerda "></span>
</section>
<section>
<span class="topo-direita "></span>
<h2>Cursos</h2>
<ul>
<li>Logica de Programação - SENAC</li>
<li>HTML5 e CSS3 (Cursando) - SENAC</li>
</ul>
<span class="baixo-esquerda "></span>
</section>
</div>
<!-- CONTEÚDO LADO DIREITO -->
<div class="coluna coluna-direita ">
<section>
<span class="topo-direita "></span>
<h2>Experiências</h2>
<ul>
<li>
<p>VAZIO</p>
</li>
</ul>
<span class="baixo-esquerda "></span>
</section>
<section>
<span class="topo-direita "></span>
<h2>Formação</h2>
<ul>
<li>
<p>VAZIO</p>
</li>
</ul>
<span class="baixo-esquerda "></span>
</section>
</div>
</div>
</div>
</main>
<footer>
<div class="container ">
<nav>
<ul class="info-contato ">
<li>
<a href="mailto:[email protected] "><strong>E-MAIL: </strong>[email protected]</a>
</li>
<li>
<a href="tel:55419999999 "><strong>TELEFONE: </strong>(11) 98830-5844</a>
</li>
<li>
<a href="https://www.google.com/maps/place/Av.+S%C3%A3o+Lucas,+198+-+Parque+Sao+Lucas,+S%C3%A3o+Paulo+-+SP,+03239-000/@-23.5946042,-46.5494434,17z/data=!3m1!4b1!4m5!3m4!1s0x94ce5d07847feb25:0xfaf36858ffd54152!8m2!3d-23.5946042!4d-46.5472547 "><strong>ENDEREÇO: </strong>Av. São Lucas, 198 - Parque Sao Lucas</a>
</li>
</ul>
</nav>
<nav>
<ul class="redes-sociais ">
<li>
<a href="https://github.com/DerikReani ">
<img src="imagens/github.png " alt="Github ">
<p>Github</p>
</a>
</li>
<li>
<a href="https://www.instagram.com/derik_r12/ ">
<img src="imagens/instagram.png " alt="Instagram ">
<p>Instagram</p>
</a>
</li>
</ul>
</nav>
</div>
</footer>
</div>
</body>
</html>