-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (86 loc) · 3.15 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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>Super UI | Home</title>
<link rel="stylesheet" href="gist.css" />
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="common.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="grid-container">
<header class="container-fluid header-container">
<a class="btn-link" href="/">
<h1 class="header-title head-xl">Super UI</h1>
</a>
<nav class="main-nav-bar">
<a class="btn-link text-md" href="/">Home</a>
<a class="btn-link text-md" href="/document/alert/alert.html"
>Documentation</a
>
<a
class="btn-link text-md"
href="https://github.com/dev-prabhat/Super-UI"
>Github</a
>
</nav>
</header>
<main class="container main-container">
<section class="hero-section d-flex">
<section class="hero-info margin-md">
<h2 class="hero-title head-xl margin-md">
Create your UI with Superpower Components
</h2>
<p class="hero-description margin-lg text-md">
Just copy and paste in one go and boom your are ready to implement
it in your web application, gives your UI with Superpower of CSS
</p>
<a
class="btn btn-primary btn-link head-md border-radius-xs margin-xs"
href="#snippet"
>Getting Start</a
>
<a
class="btn btn-secondary btn-link head-md border-radius-xs margin-xs"
href="/document/alert/alert.html"
>Documentation</a
>
</section>
<section class="hero-img">
<img
class="img-responsive"
src="./assests/svg/undraw_website_builder_re_ii6e.svg"
alt="logo"
/>
</section>
</section>
<section class="installation">
<section class="install-instruction">
<h2 class="install-title head-lg margin-md">Installation</h2>
<p class="install-description margin-md text-sm">
Copy and paste the code given in the iframe in your head tag of
your html document , and implement classes as per defined to give
Superpower to your components
</p>
</section>
<div id="snippet" class="code-snippet">
<script src="https://gist.github.com/dev-prabhat/41d26679c6654ed478c28f1db9f49a48.js"></script>
</div>
</section>
</main>
<footer class="footer-container">
<p class="footer-description">
Made with <i class="fas fa-heart btn-icon"></i> by Prabhat Singh
</p>
</footer>
</div>
</body>
</html>