-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCU028.html
executable file
·70 lines (66 loc) · 2.38 KB
/
CU028.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>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<link rel="stylesheet" href="css/editor.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
</head>
<header>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<!-- Brand/logo -->
<a class="navbar-brand" href="#"><img src="img/upiic.png" class="float-right" width="100" height="100"/></a>
<!-- Links -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">INICIO</a>
</li>
<li class="nav-item">
<a class="nav-link" href="CU030.html">EXAMENES</a>
</li>
<li class="nav-item">
<a class="nav-link" href="CU025.html">PERFIL</a>
</li>
<li class="nav-item">
<a class="nav-link" href="CU029.html">NOTIFICACIONES</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./index.html">CERRAR SESION</a>
</li>
</ul>
</nav>
</header>
<body>
<div>
<h1>EXAMEN DE GEOMETRIA</h1>
<h2>TIEMPO RESTANTE : <strong>01:30</strong></h2>
<form>
<label for="q1">Pregunta 1</label>
<br>
<input id="q1" type="text" placeholder="Respuesta 1" name="q1">
<br>
<label for="q2">Pregunta 2</label>
<br>
<input id="q2" type="text" placeholder="Respuesta 2" name="q2">
<br>
<span> Pregunta de opcion multiple</span>
<br>
<input type="checkbox" name="qus" id="a" value="a">
<label for="a"> a)opcion a </label>
<input type="checkbox" name="qus" id="b" value="b">
<label for="b"> b)opcion b </label>
<input type="checkbox" name="qus" id="c" value="c">
<label for="c"> c)opcion c </label>
<input type="checkbox" name="qus" id="d" value="d">
<label for="d"> d)opcion d </label>
<br>
<br>
<a href="CU031.html"class="btn btn-info" > TERMINAR </a>
</form>
</div>
</body>
</html>