-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (57 loc) · 2.53 KB
/
index.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loteria</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link href="styles.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
</head>
<body>
<form id="form1">
<header id="header">
<h2>LOTERIA</h2>
</header>
<div id="typedjs">
<p>Simulador de Loteria</p>
<p>Todo con fines educativos propios</p>
<p>Herramientas utilizadas: <b>Javascript</b>, <b>CSS</b>, <b>HTML</b></p>
<p>Espero lo disfruten.</p>
</div>
<span id="typed"></span>
<div align="center" class="form-control">
<input class="form-control" type="text" id="sorteo" readonly/>
</div>
<div id="seleccion">
<select id="sel">
<option value=""></option>
</select>
<select id="sel2">
<option value=""></option>
</select>
<select id="sel3">
<option value=""></option>
</select>
<select id="sel4">
<option value=""></option>
</select>
<select id="sel5">
<option value=""></option>
</select>
</div>
<br />
<div align="center" class="container">
<input type="button" class="btn btn-success btn-lg" id="btn" name="btn" value="Sortear" onclick="sortearAct()"/>
</div>
<br>
<p id="conteo"></p>
</form>
<script src="js/app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js" integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT" crossorigin="anonymous"></script>
</body>
</html>