-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (113 loc) · 2.51 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
<!DOCTYPE html>
<html>
<head>
<title>Meu site pessoal</title>
<style>
/* Estilos globais */
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
margin: 0;
padding: 0;
background-color: #fff;
color: #333;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Estilos do cabeçalho */
header {
background-color: #222;
color: #fff;
padding: 20px;
}
h1 {
margin: 0;
font-size: 36px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 800;
text-align: center;
}
/* Estilos do menu de navegação */
nav {
background-color: #222;
border-bottom: 1px solid #444;
}
ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
li {
margin: 0;
padding: 10px;
font-size: 18px;
}
/* Estilos do conteúdo principal */
main {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h2 {
font-size: 28px;
margin-top: 30px;
font-weight: 800;
}
p {
font-size: 18px;
line-height: 1.6;
margin: 20px 0;
}
ul li {
margin: 10px 0;
font-size: 18px;
}
/* Estilos do rodapé */
footer {
background-color: #222;
color: #fff;
padding: 20px;
text-align: center;
font-size: 14px;
}
.btn {
background-color: #007bff;
color: #fff;
padding: 12px 30px;
font-size: 18px;
border-radius: 5px;
transition: all 0.2s ease;
}
.btn:hover {
background-color: #fff;
color: #007bff;
border: 2px solid #007bff;
}
</style>
</head>
<body>
<header>
<h1>Bem-vindo ao meu site pessoal!</h1>
</header>
<nav>
<ul>
<li><a href="#">Página inicial</a></li>
<li><a href="#">Sobre mim</a></li>
<li><a href="#">Projetos</a></li>
<li><a href="#">Contato</a></li>
</ul>
</nav>
<main>
<h2>Sobre mim</h2>
<p>Olá! Meu nome é Cleison e este é o meu site pessoal no GitHub. Aqui você encontrará informações sobre mim, meus projetos e minhas experiências.</p>
<h2>Projetos</h2>
<ul>