-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathteste.html
More file actions
49 lines (46 loc) · 1.73 KB
/
teste.html
File metadata and controls
49 lines (46 loc) · 1.73 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="pt-br">
<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>HelpStudy</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://kit.fontawesome.com/e61906304e.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="nav-bloco-um">
<a href="index.html"><img src="images/Logo.png"></a>
</div>
<div class="nav-bloco-dois">
<nav>
<a href="index.html">Home</a>
<a href="sobre.html">Sobre nós</a>
<a href="contato.html">Contate-nos</a>
<a href="teste.html">Teste agora</a>
</nav>
</div>
</header>
<section>
<div class="container-introducao">
<form action="" class="adicionar" id="criarFlashcard" name="criarFlashcard">
<label class="label-titulo">Flashcards</label><br>
<input id="titulo_flashcard" name="titulo_flashcard" type="text" placeholder="Digite o título para o flashcard" size="30"><br>
<input id="resposta_flashcard" name="resposta_flashcard" type="text" placeholder="Digite a resposta do flashcard" size="30"><br>
<input class="flash-submit" type="submit">
</form>
<div class="flashcard-cont" id="lista">
</div>
</div>
</section>
<footer>
<img src="images/Logo.png">
<div>
<i class="fa-regular fa-envelope fa-lg"></i>
<a>helpStudy@gmail.com</a>
</div>
</footer>
</body>
<script src="js/flashcard.js"></script>
</html>