-
Notifications
You must be signed in to change notification settings - Fork 0
/
7.html
36 lines (33 loc) · 1.44 KB
/
7.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- meta autor, desc, kw -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/style.css">
<title>Ejercicios JavaScript</title>
</head>
<body>
<header>
<div class="jumbotron colorBg text-center">
<h1 class="display-4 my-5">Ejercicios JavaScript</h1>
<a class="btn btn-dark colorTxt btn-lg m-1" href="./index.html" role="button">Ejercicios 1 al 4</a>
<a class="btn btn-dark colorTxt btn-lg m-1" href="./5y6.html" role="button">Ejercicios 5 y 6</a>
<a class="btn btn-dark colorTxt btn-lg m-1" href="./8.html" role="button">Ejercicio 8</a>
<a class="btn btn-dark colorTxt btn-lg m-1" href="./9.html" role="button">Ejercicio 9</a>
<a class="btn btn-dark colorTxt btn-lg m-1" href="./10y11.html" role="button">Ejercicio 10 y 11</a>
</div>
</header>
<main class="container">
<h3>Ejercicio 7</h3>
<p>Escribe un programa que pida 3 números y escriba en la pantalla el mayor de los tres.</p>
<p><u>Resultado</u>:</p>
<script src="js/ejercicio7.js"></script>
</main>
<footer></footer>
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>