-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
69 lines (68 loc) · 3.43 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
<!DOCTYPE html>
<html >
<head>
<title>EMOJI WAR</title>
<link rel="icon" href="src/images/icon.png">
<link rel="stylesheet" type="text/css" href="css/EmojiWarHome.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="css/includes/responsive_navbar.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@200&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="container" >
<div class="nav-logo" onclick="window.location.href='index.html'">
<p>Emoji<span>war</span></p>
</div>
<div class="nav-items">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li class="deactive"><a href="Badges.html">Badges</a></li>
<li class="deactive"><a href="LevelAndCharacter.html">Characters</a></li>
<li class="deactive"><a href="AboutUs.html">About</a></li>
</ul>
</div>
<div class="nav-login" id="nav-login">
<button class="btn-login visible" id="btn-login" onclick="window.location.href='loginRegister.html'">Login</button>
<button class="btn-login hidden" id="btn-logout" >logout</button>
</div>
<!-- <div class="responsive-nav " >
<ul>
<li class="active"><a href="EmojiWarHome.html">Home</a></li>
<li class="deactive"><a href="Badges.html">Badges</a></li>
<li class="deactive"><a href="LevelAndCharacter.html">characters</a></li>
<li class="deactive"><a href="AboutUs.html">About</a></li>
<li><button class="btn-login visible" id="btn-login" onclick="window.location.href='loginRegister.html'">Login</button></li>
<li><button class="btn-login hidden" id="btn-logout" >logout</button></li>
</ul>
</div>-->
</div>
</nav>
<section class="page">
<div class="home">
<div class="layer">
<div class="caption">
<p>We Are Developers</p>
<h1>EmojiWar</h1>
<p class="border">We are four developers from ITI, Open Source - IoT Track, We developed
this game in the Client Side Technologies Course, Supervised by: Eng. Shimaa.
</p>
<button id="about">About us</button>
<button id="play">Play</button>
</div>
<div class="vidDiv">
<h1>We Create . . We Innovate</h1>
<p>HOW TO PLAY</p>
<video autoplay loop>
<source src="src/Videos/HomeDemo.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</section>
<audio id="homeTrack" src="src/sound/hometrack.mp3" loop="loop"></audio>
<script src="js/EmojiWarHome.js"></script>
<script src="js/is_login.js"></script>
</body>
</html>