-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
170 lines (155 loc) · 4.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inicio</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap">
<style>
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
a {
text-decoration: none;
}
body {
font-family: 'Roboto', sans-serif;
background: #fef7ff;
display: flex;
justify-content: center;
align-items: center;
}
.container {
background: #fef7ff;
text-align: center;
padding: 20px;
}
.tabs {
display: flex;
justify-content: space-around;
margin-bottom: 12px;
}
.tab {
width: 225px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
color: #49454f;
font-weight: 500;
font-size: 14px;
line-height: 20px;
letter-spacing: 0.1px;
position: relative;
}
.selected {
color: #65558f;
}
.selected::after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 35px;
height: 2px;
background: #65558f;
border-radius: 1px;
}
.avatar {
width: 251px;
height: 238px;
margin: 20px auto;
background: url('./assets/generic-avatar.svg') no-repeat center center;
background-size: cover;
}
.info-card {
background: #ece6f0;
border-radius: 28px;
padding: 24px;
margin: 12px auto;
width: fit-content;
}
.headline {
font-size: 24px;
font-weight: 400;
color: #4f378b;
line-height: 32px;
margin-bottom: 16px;
text-align: center;
}
.supporting-text {
font-size: 14px;
font-weight: 400;
color: #49454f;
line-height: 20px;
text-align: center;
letter-spacing: 0.25px;
max-width: 560px;
}
.skills {
display: flex;
justify-content: center;
margin-top: 20px;
flex-wrap: wrap;
gap: 12px;
}
.chip {
background: #493971;
color: #fff;
border-radius: 8px;
display: flex;
align-items: center;
padding: 6px 16px;
height: 33px;
font-size: 14px;
font-weight: 500;
line-height: 20px;
letter-spacing: 0.1px;
}
.chip img {
width: 18px;
height: 18px;
margin-right: 8px;
}
</style>
</head>
<body>
<div class="container">
<div class="tabs">
<a href="index.html"><div class="tab selected">Inicio</div></a>
<a href="project.html"><div class="tab">Projetos</div></a>
<a href="about.html"><div class="tab">Sobre Mim</div>
<a href="contatos.html"><div class="tab">Contato</div></a>
</div>
<div class="avatar"></div>
<div class="info-card">
<div class="headline">PALLAS DA SILVA GUEDES</div>
<div class="supporting-text">
Eu sou Pallas/Edson da Silva Guedes, tenho 17 anos atualmente moro no Brasil. Eu estou cursando ensino médio na escola "E.E. Professor Allyrio de Figueiredo Brasil" e também na mesma escola estou cursando curso técnico em "Desenvolvimento de Sistemas" com data de finalização no ano de 2025.
</div>
</div>
<div class="skills">
<div class="chip">
<img src="./assets/selected-icon-5.svg" alt="">
C
</div>
<div class="chip">
<img src="./assets/selected-icon-2.svg" alt="">
Linux
</div>
<div class="chip">
<img src="./assets/selected-icon-3.svg" alt="">
Shell Script
</div>
<div class="chip">
<img src="./assets/selected-icon-4.svg" alt="">
Microsoft Office
</div>
</div>
</div>
</body>
</html>