forked from Frombolas/DesafioLoopis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (67 loc) · 3.01 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
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="imagens/icon.png" type="image/x-icon">
<title>Desafio</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<!--Título-Principal-->
<div class="tittle">
<p class="esquerdo">LOOPIS</p>
<p class="direito">GAMES LIST</p>
</div>
<div class="box">
<!--Box Esquerda-->
<main class="caixaesquerda">
<h1>Cadastro</h1>
<div class="name">
<label for="">Nome</label><br>
<input type="text" id="todo-name" class="placeholder-text" placeholder="Digite o nome do jogo..."
style="width: 490px; height: 49px; border-radius: 8px;margin-left: 30px; border-color: #737171; border-style: solid;"><br>
</div>
<div class="description">
<label for="">Descrição</label><br>
<textarea name="Descrição" id="todo-description" class="placeholder-text"
placeholder="Digite uma breve descrição do jogo..." cols="30" rows="10"
style="width: 490px; height:171px; border-radius: 8px; margin-left: 30px;border-color: #737171; border-style: solid; resize: none; size: 16px;"></textarea>
</div>
<div class="favorito">
<label for="">Marcar jogo como favorito</label><br>
</div>
<div class="father-buttons">
<div class="buttons">
<input type="radio" id="favorite" name="botao" value="sim"
style="width: 57px; height: 57px; border-radius: 40px; margin-left: 30px;">
<p class="boolean">Sim</p>
<input type="radio" id="not-favorite" name="botao" value="nao"
style="width: 57px; height: 57px; border-radius: 40px;margin-left: 50px">
<p class="boolean">Não</p>
</div>
</div>
<div class="botSlv">
<button id="Salvar" value="Salvar" onclick="submit()"
style="border-radius: 28px; width:330px; height: 72px; font-size: 32px; align-items: center; font-family: Inter; background-color: #4181FF; color: white; margin-top: 20px; margin-left: 100px;">
Salvar</button>
</div>
</main>
<main class="caixadireita">
<h1>Lista</h1>
<main class="roll">
<div class="card">
</div>
</main>
</div>
</main>
</div>
</div>
</main>
</div>
<script src="index.js" defer></script>
</body>
</html>