forked from fct-coders/hacktoberfest-2020-presencas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Presenças Hacktoberfest 2020</title>
<link rel="stylesheet" href="style.css" />
<!-- <link
rel="stylesheet"
href="https://hacktoberfest.digitalocean.com/assets/application-9ae5599a0669647c4465b73c3eaeb2bc3c26fdd77bd4fc33e0228089e505c680.css"
/> -->
<script src="./script.js" defer></script>
</head>
<body>
<div>
<header>
<nav id="navbar" class="navbar">
<div class="nav-wrapper">
<a class="nav-logo" href="/">HFCT</a>
<ul class="navbar-links">
<li>
<a class="navLink" href="/">home</a>
</li>
<li>
<a class="navLink" href="#section-about">O que é?</a>
</li>
<li>
<a class="navLink" href="#section-help">Como participar?</a>
</li>
<li>
<a class="navLink" href="#section-contributors"
>participantes</a
>
</li>
<li>
<a class="navLink" href="#section-social">redes sociais</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<section id="section-about">
<p>Bem vindos ao repo do Hacktoberfest 2020 da FCT!</p>
</section>
<section id="section-help"><h2>Precisa de ajuda?</h2></section>
<section id="section-contributors">
<h2>Contribuidores</h2>
</section>
<section id="section-social">
<p>Onde nos encontrar?</p>
</section>
</main>
</div>
<footer></footer>
</body>
</html>