This repository was archived by the owner on Jan 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsobre.html
More file actions
77 lines (65 loc) · 2.27 KB
/
sobre.html
File metadata and controls
77 lines (65 loc) · 2.27 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8" />
<title>Support || Contato</title>
<link rel="icon" href="./public/images/logo-icon.png" />
<link rel="stylesheet" href="./public/css/main.css" />
<link rel="stylesheet" href="./public/css/animations.css" />
<link rel="stylesheet" href="./public/css/page-sobre.css" />
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<img src="./public/images/logo-icon.png" alt="Logo support">
<h1>Sobre (Quem somos)</h1>
</header>
<main>
<aside>
<div class="perfil">
<img
src="https://avatars.githubusercontent.com/u/26774355?s=88&u=f89b5bfd2d9de7a5477b4e379ef62249340f89fb&v=4"
alt="">
<div class="info">
<h3>Wellington Rodrigues de Sousa</h3>
<button>
<a href="https://github.com/wrtinho">Ver mais</a>
</button>
</div>
</div>
<div class="descricao">
<p>Estudante de sistema de informação na UFPI. Programador jr, Atualmente estudando Javascript e algoritmos em
redes mesh via SDN (TCC).
Discente do curso de Sistemas de Informação - UFPI.
</p>
</div>
</aside>
<aside>
<div class="perfil">
<img
src="https://avatars.githubusercontent.com/u/50251304?s=400&u=f3ac62e5d926b4c8f2a8bc93e548ea7443ff5dbb&v=4"
alt="">
<div class="info">
<h3>Jhonnas Keven Nunes Santos</h3>
<button>
<a href="https://github.com/J-Keven">Ver mais</a>
</button>
</div>
</div>
<div class="descricao">
<p>Estudante de sistema de informação na UFPI.
Desenvolvedor Full-Stack em andamento. Apaixonado por tecnologia, programação e cafécoração
.
</p>
</div>
</aside>
</main>
<a class="back-home" href="./index.html">
<img src="public/images/arrow-back.svg" alt="Voltar para pagina home">
<h3>Voltar para pagina home</h3>
</a>
</div>
</body>
</html>