-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.html
More file actions
54 lines (50 loc) · 1.83 KB
/
tools.html
File metadata and controls
54 lines (50 loc) · 1.83 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>
<title>Nate's World | Tools</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#101D42" />
<meta property="og:locale" content="en" />
<!--Tailwind CSS-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.0.2/tailwind.min.css" />
<!--Site Icon-->
<link rel="shortcut icon" href="Assets/Icons/tools.png" title="favicon" />
<link rel="apple-touch-icon" href="Assets/Icons/tools.png" sizes="180x180" title="favicon" />
<link rel="canonical" href="https://natesworld-projects.github.io/">
<!--Import CSS-->
<link rel="stylesheet" href="Styles/globals.css">
<link rel="stylesheet" href="Styles/tools.css">
</head>
<body>
<div class="app-mount" id="app-mount">
<header class="site-header" id="header">
<nav class="site-navigation" id="navigation">
<ul class="navigation-container">
<li class="nav-item">
<a href="/">Home</a>
</li>
<li class="nav-item">
<a href="https://unlocker.nates-world21.repl.co/">Unblocker</a>
</li>
<li class="nav-item">
<a href="/preview">Theme Preview</a>
</li>
<li class="nav-item hidden">
<a href="/shorten">Url Shortener</a>
</li>
</ul>
</nav>
</header>
<section class="text-gray-600 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="xl:w-1/2 lg:w-3/4 w-full mx-auto text-center">
<p class="text-white leading-relaxed text-lg">Tools</p>
<span class="inline-block h-1 w-10 rounded bg-indigo-500 mt-8 mb-6"></span>
</div>
</div>
</section>
</div>
</body>
</html>