-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (61 loc) · 2.29 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
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Sitio web para jugar al Tateti">
<meta name="author" content="Carlitox">
<title>Tateti for Carlitox!</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Favicon -->
<link href="image/favicon.ico" rel="icon" type="image/ico"/>
<!-- Estilos personalizados -->
<link href="css/estilos.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-light bg-light static-top header">
<div class="container">
<a class="navbar-brand" href="index.html"><img class="logo" src="image/logo.png"></a>
</div>
</nav>
<!-- Header -->
<div class="container home">
<center><h3>¿Aburrido? <span class="badge badge-secondary">Tateti!</span></h3></center>
<hr>
<div class="row">
<div class="col">
<input id="jugador1" type="text" class="form-control botonesHome" placeholder="Jugador 1">
</div>
<h3>VS</h3>
<div class="col">
<input id="jugador2" type="text" class="form-control botonesHome" placeholder="Jugador 2">
</div>
</div>
<button onclick="iniciarJuego();" type="submit" class="btn btn-block btn-lg btn-primary botonesHome">Jugar 1 VS 1</button>
<center><h4>Desafio Individual <span class="badge badge-secondary">New</span></h4></center>
<hr>
<input id="jugadorindividual" class="form-control botonesHome" type="text" placeholder="Tu Nombre">
<button onclick="iniciarDesafio();" type="button" class="btn btn-primary btn-lg btn-block botonesHome">Desafio Individual</button>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="container">
<center>
<span class="textoFooter">@CarlitoxCV95 "Simplemente jugar!"
<a class="textoFooter" href="https://github.com/Carlitox95/WebApp-Tateti">
<img class="iconoFooter" src="image/github.png"></img>
</a>
</span>
</center>
</div>
</footer>
<!-- Footer -->
<!-- Bootstrap core JavaScript -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/configTateti.js"></script>
</body>
</html>