forked from EBAC-QE/aula-html-ebac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (49 loc) · 1.78 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aula HTML</title>
<link rel="stylesheet" href="css/style.css">
</head>
<!-- mostrar no final -->
<style>
.titulo {
color: #ffc400;
}
</style>
<body id="wrap">
<div class="header">
<header>
<h1 class="titulo">Meu primeiro HTML</h1>
<img src="./img/logo.png" alt="Logo Ebac">
<nav>
<ul>
<li class="menu-um"><a href="http://google.com" target="blank">Menu 1</a></li>
<li id="menu-dois"><a href="http://linkedin.com">Menu 2</a></li>
<li><a href="http://instagram.com">Menu 3</a></li>
</ul>
</nav>
</header>
</div>
<h2>Subtítulo</h2>
<p>Bem vindo ao nosso site</p>
<div>
<img src="https://www.superprof.com.br/blog/wp-content/uploads/2017/01/efeitos-da-guitarra.jpg"
alt="Imagem de uma pessoa tocando uma guitarra vermelha">
</div>
<div id="form">
<h2>Preencha o formulário abaixo</h2>
<form action="https://ebaconline.com.br/blog">
<label for="nome">Digite seu nome:</label>
<input type="text" name="nome" id="nome">
<label for="email">Digite seu email:</label>
<input type="email" name="email" id="email">
<label for="email">Quer receber conteúdos da EBAC?</label>
<input type="radio" name="opcao" value="nao" id="like">Não
<input type="radio" name="opcao" value="sim" id="like">Sim
<input type="submit" value="Enviar" class="btn-enviar">
</form>
</div>
</body>
</html>