-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscramble.html
88 lines (78 loc) · 2.82 KB
/
scramble.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
81
82
83
84
85
86
87
88
<!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>Scramble Game</title>
<link rel="stylesheet" href="css/scramble.css">
<link rel="shortcut icon" href="images/8.png">
<link rel="stylesheet" type="text/css" href="cssfont/all.css">
<link rel="stylesheet" type="text/css" href="css/button.css">
</head>
<body>
<header class="title1">
<a href="index.html">
<i class="fas fa-arrow-circle-left fa-4x"></i>
</a>
<a href="rock-paper-scissor.html">
<i class="fas fa-arrow-circle-right fa-4x"></i>
</a>
</header>
<img src="images/1.png" class="small-icon1">
<img src="images/2.png" class="small-icon2">
<img src="images/9.png" class="small-icon3">
<img src="images/4.png" class="small-icon4">
<header>
<div class="container">
<div class="heading" id="hide">
<center>
<h1 style="font-size:55px; font-weight: 900; padding-top: 100px;" class="effect-5">
<span>W</span>
<span>e</span>
<span>l</span>
<span>c</span>
<span>o</span>
<span>m</span>
<span>e </span>
<span>T</span>
<span>o </span>
<span>W</span>
<span>o</span>
<span>r</span>
<span>d </span>
<span>S</span>
<span>c</span>
<span>r</span>
<span>a</span>
<span>m</span>
<span>b</span>
<span>l</span>
<span>e </span>
<span>G</span>
<span>a</span>
<span>m</span>
<span>e</span>
</h1>
</center>
</div>
</header>
<br><br><br><br><br>
<section><br>
<center>
<div class="scramble">
<h2 class="msg"></h2><br><br><br>
<input type="text" class="hidden">
<br><button class="btn">Click here to start</button>
</div>
</center>
</section>
</div>
<br><br><br><br><br><br>
<!--Footer starts-->
<footer>
<p class="copy-right">© copyright by Simple Games, All rights are reserved.
</footer>
</body>
<script src="js/scramble.js"></script>
</html>