-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
60 lines (55 loc) · 1.87 KB
/
Index.html
File metadata and controls
60 lines (55 loc) · 1.87 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
55
56
57
58
59
60
<!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>LightUI | Make web lighter</title>
<link rel="stylesheet" href="../docs.css" />
</head>
<body>
<main class="main-wrapper flex flex-col">
<!-- navbar starts -->
<nav class="nav-wrapper">
<div class="container nav-inner-wrapper flex ai-center jc-between">
<h1 class="nav-logo"><a href="./Index.html">LightUI</a></h1>
<div class="nav-items flex flex-centered">
<a
href="./components/getstarted.html"
class="nav-link"
>Docs</a
>
<a
href="https://github.com/m26unkwn/LightUI"
target="_blank"
class="nav-link"
>Github</a
>
</div>
</div>
</nav>
<!-- navbar end here -->
<!-- main document starts here -->
<main class="hero-main">
<section class="hero container flex flex-col jc-center flex-gap">
<h1 class="hero-large-text">
Make your web <span class="hero-highlight-text">Lighter</span> and
<span class="hero-highlight-text">Beautiful</span> with
<span class="hero-highlight-text hero-prime-color">LightUI</span>.
</h1>
<p class="doc-preview-desc hero-desc">
Beautiful, Light and modern CSS UI library.
</p>
<div class="hero-btn-section">
<button class="hero-btn">
<a href="./components/getstarted.html" target="blank"
>Get Started</a
>
</button>
</div>
</section>
</main>
<!-- main document ends here -->
</main>
</body>
</html>