-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
71 lines (70 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Fifteen Puzzle Game 🎈🏆</title>
<link rel="icon" href="img/favicon.png" />
<link
href="https://fonts.googleapis.com/css?family=Indie+Flower&display=swap"
rel="stylesheet"
/>
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body onload="startReadyOverLay()">
<div id="overlay-1" onclick="endReadyOverLay()">
<div id="text-1">Are you ready ? <br />Click to go🚴♂️</div>
</div>
<div class="container">
<header>
<h1 class="name-letters">
🎈<span class="fifteen">Fifteen</span>Puzzle🏆
</h1>
<!-- <hr /> -->
</header>
<section>
<div id="game"></div>
<div id="controls">
<div id="solve"></div>
<button class="btn btn-outline-primary" id="shuffle">Reset</button>
</div>
</section>
<div class="social-icons">
<a href="https://github.com/AbdallahHemdan" target="_black">
<i title="Github" class="fab fa-github"></i>
</a>
<a
href="https://www.linkedin.com/in/abdallah-a-hemdan-4a94a614a/"
target="_black"
>
<i title="Linkedin" class="fab fa-linkedin-in"></i>
</a>
<a href="mailto:[email protected]" target="_black">
<i title="My mail" class="far fa-envelope"></i>
</a>
<a href="https://www.hackerrank.com/Hemdan" target="_black">
<i title="HackerRank" class="fab fa-hackerrank"></i>
</a>
<a
href="https://www.facebook.com/profile.php?id=100009270028400"
target="_black"
>
<i title="FaceBook" class="fab fa-facebook-f"></i>
</a>
<a href="https://codeforces.com/profile/AbdallahHemdan" target="_black">
<i title="CodeForces" class="fas fa-link"></i>
</a>
</div>
<footer>CopyRight © <span> AbdallahHemdan </span> 2020.</footer>
<div id="overlay-2" onclick="endCongratsOverLay()">
<div id="text-2">Congrats 🎈🎉, You did it! click to replay</div>
</div>
<script src="js/app.js"></script>
</div>
</body>
</html>