-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
195 lines (170 loc) · 6.52 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="google-site-verification" content="ugC2zx7Ne9iHe-KahH2l2xd7Zk_srVbCOPp4ff7CsDw" />
<link rel="stylesheet" href="css/main.css">
<!-- Ícones do Google Material -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<title></GuiDev></title>
<style>
header {
background: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
header p {
font-size: 1rem;
margin-top: 0;
}
section {
padding: 20px;
margin: 20px 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
h2 {
font-size: 2rem;
margin-bottom: 15px;
text-align: center;
color: #333;
}
.project {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 20px;
}
.project div {
background-color: #fff;
padding: 20px;
margin: 10px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 30%;
box-sizing: border-box;
}
.project img {
width: 100%;
border-radius: 8px;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 50px 0;
}
footer a {
color: #fff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Responsividade */
@media (max-width: 768px) {
.project div {
width: 100%;
}
}
/* Estilos dos ícones */
.icon {
vertical-align: middle;
margin-right: 10px;
}
.case {
font-size: 20px;
font-weight: bold;
}
#contact ul {
list-style: none; /* Remove as bolinhas padrão */
padding: 0; /* Remove o padding padrão do <ul> */
display: flex; /* Exibe os itens <li> em linha */
gap: 20px; /* Define o espaçamento entre os itens */
flex-wrap: wrap; /* Permite que os itens quebrem para a linha seguinte, caso necessário */
}
#contact li {
display: flex;
align-items: center; /* Alinha os ícones e o texto verticalmente */
gap: 10px; /* Espaçamento entre o ícone e o texto */
}
#contact a {
text-decoration: none; /* Remove o sublinhado dos links */
color: black; /* Define a cor do texto do link */
font-weight: 500; /* Opcional: deixa o texto mais destacado */
}
#contact .material-icons .icon {
font-size: 24px; /* Tamanho dos ícones */
color: black; /* Cor dos ícones */
}
</style>
</head>
<body>
<header>
<div class="container">
<h1><a href="/">José Guilherme Cerqueira Oliveira</a></h1>
<p></Desenvolvedor Web | Estudante></p>
</div>
</header>
<section id="about">
<div class="container">
<a href="about/"><h2>Sobre Mim</h2></a>
<p><span class="case">Olá</span>👋</br>Meu nome é <strong>José Guilherme</strong> e moro no interior de Minas Gerais. Estudando <a href="https://vest.doctum.edu.br/cursos/analise-de-desenvolvimento-de-sistemas/">Análise de Desenvolvimento de Sistemas</a> pela Doctum. Participante do Computer Science Harvard <a href="https://cs50.harvard.edu/">(CS50)</a>. Sou um entusiasta de todas as tecnologias.</p>
</div>
</section>
<section id="projects">
<div class="container">
<a href="projects/"><h2>Projetos</h2></a>
<div class="project">
<div>
<img src="https://via.placeholder.com/300x200" alt="Projeto 1">
<h3>Projeto 1</h3>
<p>Este é um exemplo de projeto que desenvolvi utilizando HTML, CSS e JavaScript. O objetivo desse projeto foi...</p>
</div>
<div>
<img src="https://via.placeholder.com/300x200" alt="Projeto 2">
<h3>Projeto 2</h3>
<p>Este projeto foi feito com foco em usabilidade, utilizando as melhores práticas de design responsivo...</p>
</div>
<div>
<img src="https://via.placeholder.com/300x200" alt="Projeto 3">
<h3>Projeto 3</h3>
<p>Um projeto de desenvolvimento de aplicativo web, com integração de API para fornecer dados dinâmicos...</p>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<a href="contact/"><h2>Contato</h2></a>
<p>Se você quiser conversar sobre oportunidades de colaboração ou se tiver alguma dúvida sobre meus projetos, fique à vontade para me contactar:</p>
<ul>
<li title="email acadêmico"><span class="material-icons icon">email</span><a href="mailto:[email protected]">Email Acadêmico</a></li>
<li title="GitHub"><span class="material-icons icon">github</span><a href="https://github.com/guilhermecerqueiraoliveira" target="_blank">GitHub</a></li>
<li title="linkedIn"><span class="material-icons icon">linkedin</span><a href="https://www.linkedin.com/in/guilhermecerqueiradeoliveira/" target="_blank">linkedIn</a></li>
</ul>
</div>
</section>
<footer>
<p>
<a href="https://raw.githubusercontent.com/guilhermecerqueiraoliveira/guilhermecerqueiraoliveira.github.io/refs/heads/master/license.md"><code></Gui></code></a>
© <span id="year"></span>
</p>
</footer>
<script src="js/year.js"></script>
</body>
</html>