-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.91 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
<!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>Sapphire: Home</title>
<link rel="stylesheet" href="/css/components.css"/>
<link rel="stylesheet" href="/css/document.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="shortcut icon" type="image/jpg" href="/assets/favicon/favicon.ico"/>
</head>
<body>
<section class="home-page-bg">
<nav class="navbar centered-flex-row-container shadow-md">
<a id="nav-logo" href="/index.html">
<img src="/assets/images/Sapphire lib Logo 2.png" class="logo"/>
</a>
<div class="navigation centered-flex-row-container">
<ul class="nav-items centered-flex-row-container">
<li class="space-S"><a href="/index.html">Home</a></li>
<li class="space-S"><a href="/Docs/Get-Started/introduction.html">Documentation</a></li>
</ul>
<i id="nav-menu" class="space-S fas fa-bars"></i>
</div>
</nav>
<main class="hero-section">
<div class="hero-heading">So you wanna build beautiful UIs for the Web? <br> <span>Check out Sapphire</span></div>
<div class="hero-subheading">A Light Weight, Robust, and Customizable CSS library to help you build beautiful and responsive user interfaces for the Web quickly.</div>
<div class="hero-btns">
<a class="btn btn-primary rounded-med space-S" href="/Docs/Get-Started/introduction.html">Get Started</a>
<a class="btn btn-outline-default rounded-med space-S" href="https://github.com/Devansu-Yadav/Sapphire" target="_blank">Github</a>
</div>
</main>
</section>
</body>
</html>