-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (39 loc) · 1.84 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 lang="en" class="h-100">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
<meta name="generator" content="Hugo 0.101.0">
<title>Word Guess</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<meta name="theme-color" content="#712cf9">
<link href="./styles/style.css" rel="stylesheet">
</head>
<body>
<main class="container text-center w-100 h-10 mw-50px m-auto">
<div class = "container scoreboard d-flex flex-column">
<p class ="h4 m-0 pt-2 " id="scoretext">score</p>
<h1 class = "d inline-flex display-1 pe-1 ps-1" id = "score">0</h1>
</div>
</div>
<div class = "container overflow-auto text-start" id = "questionarea">
<p style="font-size: medium;" class="lead" id = "question"></p>
</div>
<div class = "container textbox p-3" id = "bottombox">
<input style="font-size:25px ;" type="button" class = "text-center m-3" id = "start" value="Başla!"/>
</div>
<br>
<p class="lead">
</p>
</main>
<footer class="text-center text-start bg-white text-muted">
<p>Made by <a href="https://github.com/tscburak" class="text-black">tscburak</a></p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script>
<script type="module" src="./scripts/index.js"></script>
</body>
</html>