-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenombrado.html
More file actions
26 lines (26 loc) · 765 Bytes
/
Copy pathrenombrado.html
File metadata and controls
26 lines (26 loc) · 765 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<form action="" method="get">
<div>
<label for="name">Nombre</label>
<input type="text" id="name">
</div>
<h4>Tipo de saludo:</h4>
<div>
<label for="good" name="greeting">Buenos días</label>
<input type="radio" id="good" name="greeting">
<label for="hi">Hola</label>
<input type="radio" id="hi" name="greeting">
<label for="how">¿Qué tal?</label>
<input type="radio" id="how" name="greeting">
</div>
</form>
</body>
</html>