-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
81 lines (61 loc) · 2.6 KB
/
home.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
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Casper notícias</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="titulo">Feed de notícias</h1>
</header>
<div id="exibirnoticias">
</div>
<div class="pin-acesso" id = "pinacesso">
<label for="pin">Insira o PIN de acesso</label>
<input type="password" id="pin">
<input type="submit" value="Enviar" class="enviar" id="clique" onclick="mostrarDepoisPin()">
</div>
<div class="mascara" id="mascara">
<div class="form-cont" id="formcont">
<div id="botao-fechar">X</div>
<form>
<div class="input-adic">
<label for="link-imagem">Link para imagem</label>
<input type="text" id="link-imagem" class="input-padrao">
</div>
<div class="input-adic">
<label for="titulo-not">Título</label>
<input type="text" id="titulo-not" class="input-padrao">
</div>
<div class="input-adic">
<label for="descricao">Descrição</label>
<input type="text" id="descricao" class="input-descricao">
</div>
<div class="input-adic">
<label for="tema">Tema</label>
<select id="tema" value="esporte" class="input-padrao">
<option value="esporte">Esporte</option>
<option value="politica">Política</option>
<option value="entretenimento">Entretenimento</option>
<option value="famosos">Famosos</option>
</select>
</div>
<div class="input-adic">
<label for="link-noticia">Link</label>
<input type="text" id="link-noticia" class="input-padrao">
</div>
<button id="botao-add">Adicionar</button>
</form>
</div>
</div>
<div>
<ul class="botao-principal">
<button id="myBtn" title="Adicione Noticias">Adicione Noticias</button>
</ul>
</div>
</body>
<script src=api.js></script>
<script src=efeitos.js></script>
</html>