-
Notifications
You must be signed in to change notification settings - Fork 7
/
form.html
35 lines (32 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adiconar um novo produto</title>
</head>
<body>
<form action="" method="get" class="form-example">
<div class="form-example">
<label for="name">Nome do produto: </label>
<input type="text" name="name" id="name" required>
</div>
<div class="form-example">
<label for="email">Preço do produto: </label>
<input type="email" name="email" id="email" required>
</div>
<div class="form-example">
<fieldset>
<legend>Condicao do produto</legend>
<input type="radio" id="kraken" name="monster">
<label for="kraken">Novo</label><br/>
<input type="radio" id="sasquatch" name="monster">
<label for="sasquatch">Usado</label><br/>
</fieldset>
</div>
<div class="form-example">
<input type="submit" value="Subscribe!">
</div>
</form>
</body>
</html>