-
Notifications
You must be signed in to change notification settings - Fork 0
/
9.html
35 lines (32 loc) · 1.4 KB
/
9.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="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="./7.html" role="button">Ejercicio 7</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 9</h3>
<p>Escribe un programa que pida una frase y escriba las vocales que aparecen. Nota: Tener en cuenta la función length y substr. (developer mozilla)</p>
<p><u>Resultado</u>:</p>
<script src="js/ejercicio9.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>