-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
68 lines (65 loc) · 2.81 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
<!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" />
<meta name="author" content="Mohasin Haque" />
<meta name="description"
content="FAST UI a CSS library with pre-defined classes for quick creation of your projects. Now build projects more faster by just in single click by integrating this FAST UI in your code." />
<link rel="icon" href="https://img.icons8.com/ios-glyphs/50/000000/fast-track.png" />
<link rel="stylesheet" href="./styles/main.css" />
<title>FAST UI | Home</title>
</head>
<body>
<header>
<nav class="navbar">
<div class="left-nav">
<a href="#" class="nav nav-logo">FAST UI</a>
<span class="small-text">V 1.0</span>
</div>
<div class="right-nav">
<ul class="list">
<li><a href="./index.html" class="nav right-nav-active nav-pills">Home</a></li>
<li>
<a href="./pages/avatar.html" class="nav nav-pills">Documentation</a>
</li>
<li>
<a href="./pages/installation.html" class="nav nav-pills">Installation</a>
</li>
</ul>
</div>
</nav>
</header>
<section class="section section-main">
<div class="container">
<h3 class="heading">Integrate FAST to Make FAST</h3>
</div>
<p class="about">
Welcome to FAST UI Component Library. FAST UI is a CSS library with
pre-defined classes for quick creation of your projects. Now build
projects more faster by just doing single click by integrating this FAST
UI in your code.
</p>
<div class="btn-container">
<a class="btn btn-primary" href="./pages/installation.html">Installation</a>
<a class="btn btn-secondary" href="./pages/avatar.html">Documentation</a>
</div>
</section>
<section class="section">
<footer class="footer">
<p>
<span class="colored-text">
< /> </span> by
<span class="colored-text">Mohasin</span> with
<span class="colored-text">♥</span>
</p>
<div class="socials">
<a href="https://twitter.com/mohasin_haque" target="_blank"><i class="bi bi-twitter"></i></a>
<a href="https://github.com/Mohasin-Haque" target="_blank"><i class="bi bi-github"></i></a>
<a href="https://www.linkedin.com/in/mohasin-haque" target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
</footer>
</section>
</body>
</html>