-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (61 loc) · 3.05 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
<!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>Compact UI</title>
<script src="https://kit.fontawesome.com/4f4010c8fe.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./stylesheets/style.css">
<link rel="stylesheet" href="./docs/stylesheets/main.css">
<link rel="shortcut icon" href="./assets/logo/favicon.ico">
</head>
<body>
<div class="container">
<nav class="navbar">
<div class="nav-left"><a href="./index.html" class="nav-left-link"><img src="./assets/logo/logo.png"
alt="logo"> Compact UI</a></div>
<div class="nav-right">
<ul>
<li><a href="./docs/introduction.html" class="nav-right-link">Docs <i
class="fas fa-file-word"></i></a></li>
<li><a href="https://github.com/tanishq20" target="_blank" class="nav-right-link">GitHub <i
class="fab fa-github"></i></a></li>
</ul>
</div>
</nav>
<div class="landing-section">
<div class="hero-content">
<h1 class="hero-head">More style with less stylesheets!!</h1>
<p class="hero-desc">Compact UI is an open-source, cross-platform component library that gives designers
and developers a free hand to create engaging product experiences.
</p>
<div class="hero-btns">
<a href="./docs/introduction.html" class="btn btn-primary">Get Started <i
class="fas fa-arrow-right"></i></a>
<a href="https://github.com/tanishq20/compact-UI" class="btn btn-secondary"
target="_blank">GitHub</a>
</div>
</div>
<div class="hero-banner"><img src="./assets/landing.svg" alt="landing-hero" class="img-responsive">
</div>
</div>
<footer>
<div class="footer-head">Made with ❤️ By <a href="#" target="_blank"
class="footer-head-link">Tanishq Kumar</a> | © 2022</div>
<div class="social-buttons">
<a href="https://github.com/tanishq20" target="_blank" class="social-icon github-icon">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/tanishq-kumar-b03a52194/" class="social-icon linkedin-icon"
target="_blank">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
<a href="https://twitter.com/tanishqkumar_20" target="_blank" class="social-icon twitter-icon">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</div>
</footer>
</div>
</body>
</html>