-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 894 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Projeto Labenu</title>
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<h1>Projeto Seletivo Labenu</h1>
<img src="Labenu_logo.png" title="Logo Labenu" alt="Logo Labenu">
<h3>Turmas de 2020</h3>
</header>
<section>
<div class="container">
<div class="skills">HTML</div>
<div class="skills">CSS</div>
<div class="skills">Javascript</div>
</div>
</section>
<footer>
<p id="login"></p><br/>
<div class="container">
<form action="javascript:void(0)">
<input id="email" placeholder="Coloque seu email para contato! :)" required>
<button type="submit" onclick="enviar()">ENVIAR</button>
</form>
</div>
</footer>
</body>
</html>