forked from adriansunye/Duck-or-Goose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (78 loc) · 4.15 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
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Wheel of Doom</title>
<meta name="description" content="Wheel of Doom is a web used to sacrifice coders,
the web-app uses the Will of the Gods as a fair and random (hehe) system to choose between them.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootsrap link -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="./lib/owlcarousel/owl.carousel.min.css">
<link rel="stylesheet" href="./lib/owlcarousel/owl.theme.default.min.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&lang=en" />
<!-- Custom styles -->
<link rel="stylesheet" type="text/css" href="./css/index.css">
</head>
<body>
<!-- Header -->
<header>
</header>
<!-- Main updated whit javascript-->
<main role="main" id="mainContainer">
<div class="spooky-container">
<div class="background-img-container">
<div class="fog-container">
<div class="img-area fog"></div>
<div class="img-area fog"></div>
</div>
<div class="update-area" id="startPoint"></div>
</div>
</div>
</main>
<!-- Section form hidden -->
<section id="formContainer" class="d-none">
<div class="container-md center-div" >
<div class="form-group background-papyrus">
<form id="formAddSacrifice" class="d-grid mx-auto">
<div class="form-row d-none">
<div class="col-md-12">
<div class="mt-2">
<label for="inputName" class="form-label">name</label>
<input type="text" maxlength="10" class="form-control" id="inputName">
</div>
<div class="mt-2">
<label for="inputName" class="form-label">surnaname</label>
<input type="text" maxlength="10" class="form-control" id="inputName">
</div>
</div>
</div>
<div class="d-grid gap-2 mt-2 d-none" id="btnAddContainer">
<button type ="submit" class="btn btn-orange creepy-font btn-general">add sacrifice</button>
</div>
<div id="showLivingCoders" class="d-grid gap-2 mt-2 mb-2 mx-auto">
<div id="lastKilled"class="creepy-font mt-3 text-center"></div>
</div>
<div id="titleStillAlive" class="text-center">Coders still alive</div>
</form>
</div>
</div>
</section>
<!-- Script popper for popUps and dropdowns and bootsrapj.s -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3"
crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-IDwe1+LCz02ROU9k972gdyvl+AESN10+x7tBKgc9I5HFtuNz0wWnPclzo6p9vxnk"
crossorigin="anonymous">
</script>
<script src="./lib/jquery/jquery-3.6.1.min.js"></script>
<script src="./lib/owlcarousel/owl.carousel.js"></script>
<script src="./lib/owlcarousel/owl.autoplay.js"></script>
<!-- Custom Scripts-->
<script type="module" src="./js/killingFloor.js"></script>
</body>
</html>