-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
32 lines (31 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Summit | TypeScript</title>
</head>
<body style="background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(50,59,181,1) 100%); display: flex; flex-direction: column; align-items: center; text-align: center;">
<!--Get UserName-->
<h1 class="mb-1" style="color: aliceblue; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif">Microsoft Student Summit</h1>
<div>
<form action="" method="get">
<input class="form-control" type="text" id="get-name" style="width: 232px;" name="get-name" placeholder="Escribe tu nombre">
<button class="btn btn-primary" type="button" style="height: 35px;margin-left: 11px;" onclick="getData()">Click</button>
</form>
</div>
<!--Put UserName-->
<div id="replace">
<p style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: aliceblue;" >¿Cuál es tu nombre?</p>
</div>
<!--Game field-->
<div id="div-counter">
</div>
<div style="max-width: 600px; max-height: 600px; ">
<canvas id = "game" width="400px" height="400px"></canvas>
</div>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="./main.js"></script>
</body>
</html>