-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.html
More file actions
91 lines (86 loc) · 3.01 KB
/
docs.html
File metadata and controls
91 lines (86 loc) · 3.01 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en"></html>
</body>
</html>
<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">
<link href="style.css" rel="stylesheet" type="text/css" />
<title>Xorzo Scripts - Docs</title>
<meta property="og:type" content="website">
<meta property="og:site_name" content="http://dev.xz-scripts.com/">
<meta property="og:title" content="Xorzo Scripts">
<meta property="og:description" content="Xorzo Scripts sells super high quality FiveM Scripts. For cheap prices">
<meta property="og:image" content="../images/logo.png">
<link rel="icon" type="image/x-icon" href="/images/logo.png">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@1,200&display=swap">
</head>
<body>
<div class="header" id="header">
<img src="/images/logo.png">
<button onclick="location.href='https://google.com';">Tebex</button>
<button onclick="location.href='https://discord.gg/Ssp7AzF3Jr';">Discord</button>
<button onclick="location.href='https://github.com/Xorzo-Scripts';">Github</button>
<button onclick="location.href='index.html';">Back</button>
</div>
<div class="body">
</div>
<div class="footer">
<img class="logof" src="/images/logo.png"><div style="float: right; padding: 5px; font-size: 13px;">Xorzo Scripts - All Rights Reserved.</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="sidenav">
<button2 class="dropdown-btn">xz-adminmenu
<i class="fa fa-caret-down"></i>
</button2>
<div class="dropdown-container">
<ul>
<li><a href="adminmenu/installation.html">Installation</a></li>
<li><a href="adminmenu/commands.html">Commands</a></li>
<li><a href="adminmenu/events.html">Events</a></li>
</ul>
</div>
<button2 class="dropdown-btn">xz-shoplift
<i class="fa fa-caret-down"></i>
</button2>
<div class="dropdown-container">
<ul>
<li><a href="shoplift/installation.html">Installation</a></li>
</ul>
</div>
<button2 class="dropdown-btn">xz-blackmarket
<i class="fa fa-caret-down"></i>
</button2>
<div class="dropdown-container">
<ul>
<li><a href="blackmarket/installation.html">Installation</a></li>
</ul>
</div>
</div>
<script>
var dropdown = document.getElementsByClassName("dropdown-btn");
var i;
for (i = 0; i < dropdown.length; i++) {
dropdown[i].addEventListener("click", function() {
this.classList.toggle("active");
var dropdownContent = this.nextElementSibling;
if (dropdownContent.style.display === "block") {
dropdownContent.style.display = "none";
} else {
dropdownContent.style.display = "block";
}
});
}
</script>
</body>
</html>