-
Notifications
You must be signed in to change notification settings - Fork 2
/
about-us.html
58 lines (48 loc) · 2.03 KB
/
about-us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap" rel="stylesheet">
<link rel="icon" href="image/small-logo-with-shadow.png" type="image/icon type">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/about-us.css" type="">
<title>Attack On Titan</title>
</head>
<body>
<!-- About us title in the top middle position of the page -->
<div class="title">
<h1 id="titleHeader">About Us</h1>
</div>
<!-- ----------------------------------------------------- -->
<!-- The story box in the left of the page -->
<div class="aboutUsArticle">
<p>The Titans are here and they're making a real mess of things!</p>
<p>Attack on Titan game is based on the GREAT anime series , in short Titans are the enemies you have to scape
from and save your life.</p>
<p>that game was created by ITI students</p>
<ul>
<li>Omar Awad</li>
<li>Ahmed Eldakhly</li>
<li>Hossam Radwan</li>
<li>Christen George</li>
</ul>
</div>
<!-- -------------------------------------- -->
<!-- logo icon in the right top position of the page
when clicked, it leads to the main menu -->
<div class="logoIcon" id="icon"><a href="index.html"><img src="image/small-logo-with-shadow.png"></a></div>
<!-- ------------------------------------------- -->
<!-- Audio button in the left top position of the game
when clicked an audio palys -->
<div class="speaker">
<img src="image/no-sound.svg" id="sound" alt="speaker" width="35" height="35">
</div>
<!-- ------------------------------------------------- -->
<script src="js/jquery/jquery-3.5.1.js"></script>
<script src="js/main.js"></script>
<script>
backgroundAudio.setAttribute('src', 'audio/about-us.mp3');
</script>
</body>
</html>