-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile-homepage.html
60 lines (55 loc) · 2.84 KB
/
mobile-homepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- It load First Due, To Redirects Handling -->
<script src="./scripts/website_adjust.js"></script>
<!-- Normal Head Content -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Script Maker | Home</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.0/typed.js"
integrity="sha512-ioFpA4cD4gmoOhHglW4f6gep7w+YL7UMKtXx4ebJ5NN4SscmnZYYmSjkA+DaHGvBI4wpYVPx2C7DmmV9TgbIbQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- <script src="https://cdn.tailwindcss.com"></script> -->
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./styles/tailwind/output.css">
<script src="./scripts/utils.js"></script>
<script src="./scripts/script.js"></script>
<script src="./scripts/darkmode.js"></script>
</head>
<body>
<button class="themeChangeBtn"><i class="fa-solid fa-circle-half-stroke"></i></button>
<div class="flex-center flex-col full-screen">
<h1 class="text-4xl font-black">ScriptMaker</h1>
<p class="text-xs">
Make Scripts that <span id="typer" class="text-slate-400"></span>
</p>
<div class="flex-center gap-2 p-4">
<a href="mobile-explore.html">
<div class="btn"><i class="icon fa-solid fa-plus"></i>Explore</div>
</a>
<a href="mobile-create-script.html">
<div class="btn"><i class="icon fa-solid fa-arrow-up-right-from-square"></i>Create</div>
</a>
</div>
</div>
<footer class="flex flex-col items-center">
<a href="https://github.com/JeelDobariya38/ScriptMaker">
<div class="p-2 flex items-center gap-2">
<h2 class="text-lg font-black">Repository: </h2>
<p class="text-sm font-bold text-blue-500">JeelDobariya38/ScriptMaker</p>
</div>
</a>
<a href="https://raw.githubusercontent.com/JeelDobariya38/ScriptMaker/master/LICENSE.txt">
<div class="p-2 flex items-center gap-2">
<h2 class="text-lg font-black">License: </h2>
<p class="text-sm font-bold text-blue-500">MIT</p>
</div>
</a>
</footer>
</body>
</html>