-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmap.html
More file actions
54 lines (53 loc) · 3.78 KB
/
Copy pathmap.html
File metadata and controls
54 lines (53 loc) · 3.78 KB
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
<!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>GTA SA Menu - Map</title>
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="./images/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon-16x16.png">
<meta name="description" content="GTA SA Menu - Map">
<meta name="keywords" content="html, css, gta, san andreas, menu, web">
<meta property="og:type" content="website">
<meta property="og:title" content="Simple GTA San Andreas Menu">
<link rel="stylesheet" href="./fonts/myfonts.min.css">
<link rel="stylesheet" href="./css/normalize.min.css">
<link rel="stylesheet" href="./css/gtasamenu.min.css">
</head>
<body class="container container--map">
<header class="menu-header"></header>
<main class="menu-content menu-content--map">
<h3 class="menu-map--legend-title menu-disable" id="map-legend-title">Map Legend</h3>
<div class="menu-map--legend menu-disable" id="map-legend">
<ul class="menu-map--legend-items">
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_modGarage.png" alt="mod garage">mod garage</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_saveGame.png" alt="safe house">safe house</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_spray.png" alt="pay 'n' spray">pay 'n' spray</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_barbers.png" alt="barbers">barbers</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_pizza.png" alt="well stacked pizza co">well stacked pizza co</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_burgerShot.png" alt="burgershot">burgershot</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_tattoo.png" alt="tattoo">tattoo</li>
</ul>
<ul class="menu-map--legend-items">
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_tshirt.png" alt="clothes shop">clothes shop</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_ammugun.png" alt="ammu-nation">ammu-nation</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_truck.png" alt="trucking">trucking</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_Flag.png" alt="race tournament">race tournament</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_girlfriend.png" alt="girl friend">girl friend</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_emmetGun.png" alt="emmet">emmet</li>
<li class="menu-map--legend-item"><img class="menu-map-legend-icon" src="./images/mapicons/radar_propertyG.png" alt="property for sale">property for sale</li>
</ul>
</div>
<span class="menu-map--city">Los Santos</span>
</main>
<footer class="menu-footer">
<span class="menu-option menu-option--back-left"><a href="./index.html">back</a></span>
<span class="menu-map--message">gta sa map<br>press L for show legend</span>
<p class="menu-footer-message">This menu is created by a GTA San Andreas lover. All trademarks are of their respective owners.</p>
</footer>
<script src="./js/gtasamap.min.js"></script>
<script src="./js/gtasamenu.min.js"></script>
</body>
</html>