-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
69 lines (55 loc) · 2.63 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
69
<!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>Shuttle UI | Landing Page</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/2352d5969b.js" crossorigin="anonymous"></script>
</head>
<body>
<nav class="nav-container flex-row ">
<a class="navbar-brand" href="#">
<img class="site-logo" src="./docs-site/assets/logo.png" alt="logo">
</a>
<ul class="flex-row navbar-links">
<li>
<a class="nav-link md-ht-1" href="docs.html"><i class="fab fa-dochub"></i>ocumentation</a>
</li>
<li>
<a class="nav-link md-ht-1" href="https://github.com/Maianki/Shuttle-UI"><i class="fab fa-github-square"></i> Github</a>
</li>
<li class="addtooltip">
<a class="nav-link md-ht-1" id="dark-mode-toggle" role="button" aria-label="toggle dark mode"><i class="fas fa-moon" id="toggle-mode-icon"></i> </a>
<div class="tooltip">mode</div>
</li>
</ul>
</nav>
<header class="hero">
<section class="hero-main">
<h1 class="hero-heading">Design <span class="heading-inverted">elegant</span> looking UI with <span class="heading-inverted"> shuttle speed.</span></h1>
<p class="description hero-text">Shuttle UI, an open source CSS framework to help you build beautiful web interfaces faster. Create beautiful webpages in no time.</p>
<div>
<a class="btn btn-primary btn-landing" href="docs.html" role="button">Get Started</a>
<a class="btn btn-outline-primary btn-landing" href="docs.html" role="button">Documentation</a>
</div>
</section>
<div class="responsive-img hero-img">
<img src="./docs-site/assets/hero-img.svg" alt="hero">
</div>
</header>
<footer class="footer align-items-center flex-column">
<p class="footer-description md-vt-1">Made by <span class="designed-by">Ankit Kumain</span></p>
<div class="flex-row footer-links">
<div>
<a class="nav-link md-ht-1" href="https://github.com/Maianki/Shuttle-UI"><i class="fab fa-github-square"></i></a>
</div>
<div>
<a class="nav-link md-ht-1" href="https://twitter.com/Ankit_k10"><i class="fab fa-twitter-square"></i></a>
</div>
</div>
</footer>
<script src="./docs-site/docs-Js/dark-mode.js"></script>
</body>
</html>