-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (58 loc) · 2.32 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
<!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>Spartank</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="header-box">
<h1>Spartank</h1>
<div class="last-update-date"></div>
<div class="fuel-stations">
<button class="station-header" onclick="toggleStationPrices('circlek')">
<img src="images/CircleK_trans.png" alt="Station Logo" class="station-logo">
</button>
<div id="station-circlek-prices" class="station-prices">
</div>
</div>
<div class="fuel-stations">
<button class="station-header" onclick="toggleStationPrices('f24')">
<img src="images/F24_trans.png" alt="Station Logo" class="station-logo">
</button>
<div id="station-f24-prices" class="station-prices">
</div>
</div>
<div class="fuel-stations">
<button class="station-header" onclick="toggleStationPrices('ingo')">
<img src="images/ingo_trans.png" alt="Station Logo" class="station-logo">
</button>
<div id="station-ingo-prices" class="station-prices">
</div>
</div>
<div class="fuel-stations">
<button class="station-header" onclick="toggleStationPrices('ok')">
<img src="images/OK_trans.png" alt="Station Logo" class="station-logo">
</button>
<div id="station-ok-prices" class="station-prices">
</div>
</div>
<div class="fuel-stations">
<button class="station-header" onclick="toggleStationPrices('q8')">
<img src="images/Q8_trans.png" alt="Station Logo" class="station-logo">
</button>
<div id="station-q8-prices" class="station-prices">
</div>
</div>
<div class="link-container">
<div class="github-hyperlink" id="github">
<a href="https://github.com/GhaithA-M/Spartank" target="_blank">Github</a>
</div>
</div>
</div>
<script src="js/date.js"></script>
<script src="js/script.js"></script>
</body>
</html>