forked from nayannelbatista/3781-javascript
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
74 lines (74 loc) · 2.13 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CRUD de Pensamentos</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header>
<div class="conteudo-cabecalho">
<div class="logo">
<img src="assets/imagens/logo.png" alt="">
<h1>Trechos de músicas,<br> citações de livros e
<br> <strong>suas melhores ideias
<br> num só lugar!</strong>
</h1>
</div>
<div class="imagem-cabecalho">
<img
src="assets/imagens/computador-cabecalho.png"
alt="">
</div>
</div>
</header>
<main class="background-overlay">
<div class="overlay"></div>
<div class="overlay overlay-color"></div>
<h2>Adicione um pensamento novo:</h2>
<section id="form-container">
<form id="pensamento-form">
<input type="hidden" id="pensamento-id" />
<label for="pensamento-conteudo">Pensamento</label>
<textarea
id="pensamento-conteudo"
placeholder="Digite seu pensamento"
required>
</textarea>
<label
for="pensamento-autoria">
Autoria ou Fonte
</label>
<input
type="text"
id="pensamento-autoria"
placeholder="Insira a autoria ou fonte"
required />
<div class="form-botoes">
<button
type="submit"
id="botao-salvar">
Adicionar
</button>
<button
type="button"
id="botao-cancelar">
Cancelar
</button>
</div>
</form>
</section>
<span></span>
<section id="lista-pensamentos-container">
<h3>Meu Mural</h3>
<ul id="lista-pensamentos"></ul>
</section>
</main>
<footer>
<p>©
2024 Desenvolvido por Alura.
Projeto fictício sem fins comerciais.</p>
</footer>
</body>
</html>