-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.05 KB
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 1.05 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS Master - Início</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="logo">JS<span>Master</span></div>
<ul>
<li><a href="index.html">Início</a></li>
<li><a href="aulas.html">Aulas</a></li>
<li><a href="praticas.html">Práticas</a></li>
<li><a href="https://discord.com/channels/1499755355570176081/1499755770991083570" target="_blank" class="btn-comunidade">Comunidade</a></li>
</ul>
</nav>
<header class="hero">
<h1>JS <span>MASTER</span></h1>
<p>O portal oficial de programação do Prof. Bernardo.</p>
</header>
<main class="container">
<section class="card">
<h2>Bem-vindo!</h2>
<p>Escolha uma das abas no menu acima para começar a sua jornada.</p>
</section>
</main>
</body>
</html>