-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpregunta.php
29 lines (25 loc) · 945 Bytes
/
pregunta.php
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
<?php
echo "<!DOCTYPE HTML>
<html lang='es'>
<head>";
echo "<tiltle></title>
<meta charset='UTF-8'/>
<link rel='stylesheet' type='text/css' href='estilado.css'/>";
echo "</head>
<body>";
echo "<form method='POST' action='principal.php'>
<h1 id='arri'>¿De verdad quieres morir hoy?</h1>
<input id='medmed' name='nom' type='text' placeholder='Escribe el nombre de tu lápida' size='30'/>
<h1 id='med'>Selecciona el tema del que desees adivinar</h1><br/>
<select id='enlado' name='tema'>
<option value='' selected>--Seleccionar--</option>
<option value='comidas'>Comidas</option>
<option value='calzado'>Calzado</option>
<option value='animales'>Animales</option>
</select>
<input type='hidden' name='sigueIntentando' value='-1'/>
<input type='submit' id='enmed' value='Establecer tema'>
</form>";
echo "</body>
</html>";
?>