-
Notifications
You must be signed in to change notification settings - Fork 0
/
games.html
59 lines (55 loc) · 2.31 KB
/
games.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>
<head>
<meta charset="UTF-8">
<script type="text/javascript" src="js/main.js"> </script>
<script src="js/jquery-3.1.1.js"> </script>
<script src="js/sliderscript.js"></script>
<link rel="stylesheet" href="css/main.css">
</head>
<body onload="TimeFunction()">
<div class="background"></div>
<div class='hidden-scrollbar'>
<div class='inner'>
<div class="SiteTable">
<div class="Row">
<div class="BannerCell">
<p style="text-align: center"> <img src="img/Loga.png" width="100%" alt="Logotype"> </p>
</div>
</div>
<div class="list">
<div class=" listcell" onclick="location.href='index.html'"> Home </div>
<div class=" listcell selected" onclick="location.href='games.html'"> Games </div>
<div class=" listcell" onclick="location.href='about.html'"> About </div>
<div class=" listcell" onclick="location.href='contact.html'"> Contact </div>
</div>
<div class="Row">
<div class="ContentCell">
<!-- Slidern med knapparna för att gå fram och tillbaka i listan. -->
<div id="slider">
<a href="#" class="control_next">→</a>
<a href="#" class="control_prev">←</a>
<!-- ul är en lista av saker, li representerar en sak i listan vilket man kan navigera sig igenom med knapparna control_next
_next och control_prev -->
<ul>
<!-- En img tagg i varje a tag gör så att man kan klicka på bilen för att navigera sig till det valda
spelets html sida. -->
<li><a href="game/luffarshack/luffarshack.html"> <img id="image" src="img/lsscreenshot.png" width="100%"> </a> </li>
<li><a href="game/GameOfLife/index.html"> <img id="image" src="img/GameOfLifeScreenshot.png" width="100%"> </a> </li>
<li><a href="game/chance/goc.html"> <img id="image" src="img/cgscreenshot.png" width="100%"> </a> </li>
</ul>
</div>
</div>
</div>
<div class="Row">
<div class="FooterCell">
<p class="time" id="timerAmPm"> </p>
</div>
</div>
</div>
<br>
<br>
</div>
</div>
</body>
</html>