-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (39 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Simón dice</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid">
<div class="container pt-5 d-flex justify-content-center">
<div class="name-game d-flex align-items-center">
<span class="text-danger-emphasis">Simón dice</span>
</div>
</div>
<div class="pt-2">
<div class="container alert alert-warning d-flex justify-content-around align-items-center " role="alert">
<span id="state" class="text-danger-emphasis d-flex justify-content-center align-items-center">Click en
iniciar para empezar! </span>
<span class="d-flex justify-content-center align-items-center">Ronda # <span id="turn"></span></span>
<button type="button" class="btn btn-outline-success" id="start-button">Iniciar</button>
</div>
</div>
<div class="container">
<div class="row row-cols-2">
<div class="col box" id="box-1"></div>
<div class="col box" id="box-2"></div>
<div class="col box" id="box-3"></div>
<div class="col box" id="box-4"></div>
</div>
</div>
<script src="main.js"></script>
</div>
</body>
</html>