-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
81 lines (81 loc) · 2.44 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
type="text/css"
href="https://unpkg.com/@phosphor-icons/[email protected]/src/fill/style.css"
/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="./public/images/devhat.png"
type="image/x-icon"
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./assets/css/style.css" />
<title>DevHat</title>
</head>
<body>
<div class="main-container">
<header>
<img src="./public/images/devhat.png" alt="Chapeu Logo do devHat" />
<section class="bio-container">
<h1>DevHat</h1>
<p>404 bio not found</p>
</section>
</header>
<main>
<ul class="links-containers">
<li class="social-link">
<a
target="_blank"
rel="noreferrer"
href="https://twitter.com/DevHatt"
>
<i class="ph-fill ph-twitter-logo"></i> Twitter/X</a
>
</li>
<li class="social-link">
<a
href="https://github.com/hatcoders"
target="_blank"
rel="noreferrer"
><i class="ph-fill ph-github-logo"></i> Github</a
>
</li>
<li class="social-link">
<a
href="https://www.linkedin.com/company/dev-hat/"
target="_blank"
rel="noreferrer"
><i class="ph-fill ph-linkedin-logo"></i> LinkedIn</a
>
</li>
<li class="social-link">
<a href="https://dev.to/devhat" target="_blank" rel="noreferrer"
><i class="ph-fill ph-dev-to-logo"></i> Dev.To</a
>
</li>
<li class="social-link">
<a
href="https://www.youtube.com/channel/UCZyVYHnU2LgWYKITUSnLk7A"
target="_blank"
rel="noreferrer"
><i class="ph-fill ph-youtube-logo"></i> Youtube</a
>
</li>
</ul>
</main>
<footer>
<p>Powerd By <span>DevHat</span></p>
</footer>
</div>
</body>
</html>