-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (44 loc) · 1.85 KB
/
index.html
File metadata and controls
50 lines (44 loc) · 1.85 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
<!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</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="asset/img1.svg">
</head>
<body>
<div class="landing-pg-container">
<!-- Header Section -->
<header>
<nav class="pg-navigation flex">
<div class="nav-brand flex">
<img class="round-image" alt="image of a rocket" src="asset/img1.svg"/>
<h2 class="pg-nav-title"><a href="#">Shuttle UI</a></h2>
</div>
<ul class="pg-nav-items flex">
<li class="cursor"><a href="#">Home</a></li>
<li class="cursor"><a href="documentation/doc.html">Documentation</a></li>
</ul>
</nav>
</header>
<div class="main-section-heading">
<div class="content">
<h3>Build fast, beautiful sites with Shuttle UI</h3>
<p>Quickly design and customize responsive sites with Shuttle UI, featuring extensive prebuilt components.</p>
<div class="main-section-btn flex">
<a href="documentation/doc.html" class="btn btn-dark cursor li-">Get Started</a>
<a href="https://github.com/mnath30/Component-Library.git" class="btn btn-border cursor" target="_blank">Github</a>
</div>
</div>
</div>
<div class="main-section-image">
<img class="main-image" alt="image of a rocket" src="asset/img1.svg">
</div>
<footer class="footer">
© 2022 Shuttle UI, All Rights Reserved.
</footer>
</div>
</body>
</html>