forked from timlohnes/familyfeud
-
Notifications
You must be signed in to change notification settings - Fork 1
/
game.html
59 lines (55 loc) · 1.5 KB
/
game.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Agü Yarışıyor</title>
<!--
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
-->
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/css-fireworks.css">
<link href="https://fonts.googleapis.com/css?family=Zeyada" rel="stylesheet">
<style>
h1#welcomePageInfo {
font-size: 12em;
margin-top: 0.67em;
margin-bottom: 0.67em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
font-family: 'Zeyada', cursive;
color: #23538a;
}
h1#counter {
font-size: 12em;
margin-top: 0.67em;
margin-bottom: 0.67em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
font-family: 'Zeyada', cursive;
color: #23538a;
}
</style>
</head>
<body>
<!--
<script src='https://code.jquery.com/jquery-2.2.4.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.4/TweenMax.min.js'></script>
-->
<div id="firework" class="pyro">
<div class="before"></div>
<div class="after"></div>
</div>
<div class="idc">
<img id="idcLogo" src="bg.png" width="35%">
<h1 id="welcomePageInfo" ><p>2. AGÜ YARISIYOR</p> </h1>
<h1 id="counter"></h1>
<h1 id="winnerId" class="winner" >who is the winner???</h1>
</div>
<script src='js/jquery-2.2.4.min.js'></script>
<script src='js/TweenMax.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>