-
Notifications
You must be signed in to change notification settings - Fork 0
/
html
64 lines (58 loc) · 1.83 KB
/
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
```html
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site Educacional</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<h1>Siepe</h1>
</div>
<nav>
<ul>
<li><a href="#home">Início</a></li>
<li><a href="#sobre">Sobre</a></li>
<li><a href="#servicos">Serviços</a></li>
<li><a href="#contato">Contato</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h2>Bem-vindo ao Site Educacional</h2>
<p>Aqui você encontra informações sobre educação e serviços disponíveis.</p>
</section>
<section id="sobre">
<h2>Sobre Nós</h2>
<p>Nosso objetivo é promover a educação de qualidade para todos.</p>
</section>
<section id="servicos">
<h2>Serviços</h2>
<ul>
<li>Informações sobre cursos</li>
<li>Inscrição online</li>
<li>Suporte ao aluno</li>
</ul>
</section>
<section id="contato">
<h2>Contato</h2>
<form id="contactForm">
<label for="name">Nome:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<input type="submit" value="Enviar">
</form>
</section>
</main>
<footer>
<p>© 2023 Site Educacional. Todos os direitos reservados.</p>
</footer>
<script src="script.js"></script>
</body>
</html>
```