-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
70 lines (57 loc) · 2.75 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<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>DSMOVIE</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link rel="stylesheet" href="CSS/Styles.css">
</head>
<body>
<header>
<nav class="container dsmovie-form-conteiner">
<h1>DSMovie</h1>
<div class="dsmovie-contact-contact-conteiner">
<img src="img/github.svg" alt="github">
<a href="https://github.com/r90ur7">/r90ur7></a>
</div>
</nav>
</header>
<main>
<section id ="dsmovie-form-section">
<div class = "container dsmovie-form-conteiner">
<div>
<div class="DSMovie-Card">
<img src="https://www.themoviedb.org/t/p/w220_and_h330_face/725WE0Qb1BbUF7aGvjiQqzzffpg.jpg" alt="RED Crescer é uma fera">
<div class ="dsmovie-form-description">
<h3>Red Crescer É Uma Fera</h3>
<form classe="dsmovie-form">
<div class="form-group dsmovie-form-group">
<label for="email">informe seu email</label>
<input class="form-control" type="email"id="email">
</div>
<div class="form-group dsmovie-form-group">
<label for="score">Informe Sua Avaliação</label>
<select class="form-control" name = "score" id = "score">
<option value=""></option>
<option value="1">1</option>
<option value="1">2</option>
<option value="1">3</option>
<option value="1">4</option>
<option value="1">5</option>
</select>
</div>
<div class="dsmovie-form-btn-conteiner">
<button class = "dsmovie-btn" type="submiit">Salvar</button>
<a class = "dsmovie-btn" href="index.html">Cancelar</a>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
</main>
</body>
</html>