-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
134 lines (121 loc) · 3.88 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sobre Mim</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;
}
.info-card {
background: #ece6f0;
border-radius: 28px;
padding: 24px;
margin: 12px auto;
width: 618px;
}
.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: 100%;
margin-bottom: 16px;
}
.icon {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 16px;
}
.icon img {
width: 24px;
height: 24px;
}
</style>
</head>
<body>
<div class="container">
<div class="tabs">
<a href="index.html"><div class="tab">Inicio</div></a>
<a href="project.html"><div class="tab">Projetos</div></a>
<a href="about.html"><div class="tab selected">Sobre Mim</div>
<a href="contatos.html"><div class="tab">Contato</div></a>
</div>
<div class="info-card">
<div class="headline">QUEM EU SOU?</div>
<div class="supporting-text">
Eu sou Pallas/Edson da Silva Guedes, tenho 17 anos atualmente moro no Brasil. Tenho experiência em Sistemas Baseados em Linux (Ubuntu/Debian), focando em desenvolvimento em desenvolvimento de aplicações em processamento de fala humana (STT/TTS).
</div>
</div>
<div class="info-card">
<div class="headline">STT E TTS</div>
<div class="supporting-text">
Processamento de Fala, é minha área de aprendizagem e profissionalidade. Atualmente estou trabalhando com TTS e STT utilizando ferramentas legadas que utilizam Hidden Markov Model (HMM) e usando recursos de aprendizagem de máquina para tratamento de texto de entrada.
</div>
</div>
</div>
</body>
</html>