-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (103 loc) · 4.86 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!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">
<link rel="shortcut icon" href="/assets/favicon/favicon-32x32.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w=="
crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/styles/a11y-light.min.css"
integrity="sha512-WDk6RzwygsN9KecRHAfm9HTN87LQjqdygDmkHSJxVkVI7ErCZ8ZWxP6T8RvBujY1n2/E4Ac+bn2ChXnp5rnnHA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/component.css">
<link rel="stylesheet" href="./css/main.css">
<script src="/index.js" defer></script>
<title>Home</title>
</head>
<body>
<nav class="navbar nav-main">
<div class="nav-container">
<div class="home-logo">
<a href="/">
<img class="img img-responsive" src="/assets/logo.png" alt="logo">
</a>
</div>
<div class="nav-links">
<i class="fas fa-moon theme-icon"></i>
<a href="/components/Avatar/avatar.html" class="text-primary text-bold"><i
class="fas fa-file"></i><span>Docs</span></a>
<a href="https://github.com/vinc3nati/shinobi-UI" target="_blank" class="text-primary text-bold">
<button class="btn outline-primary">
<i class="fab fa-github"></i> GitHub
</button>
</a>
</div>
</div>
</nav>
<section id="main">
<main>
<header class="heading">Build Fast, Ship Fast, Worry Less. </header>
<div class="subheading">
<span class="text-primary text-bold">Shinobi UI</span> is a CSS component library which is <span
class="text-secondary">light weight</span>, easy to use, out of the box <san class="text-secondary">
modern styling</san>. Stop worrying and start applying!
</div>
<div class="btn-group">
<a href="#installation"><button class="btn tertiary">installation</button></a>
<a href="/Color/color.html"><button class="btn primary"> get started</button></a>
</div>
</main>
</section>
<section id="installation">
<h2>Installation Guide</h2>
<div class="installation-body">
<div class="installation-image">
<img class="img img-responsive" src="/assets/logo_2.png" alt="ninja image">
</div>
<div class="steps text-justify">
<div class="step_1">
Include the <code><link/></code> tag given
below in your <code><head/></code> tag above all the stylesheets.
<div class="code-container">
<pre>
<code class="html">
<link rel="stylesheet" href="https://shinobi-ui.netlify.app/component.872fa9d5.css"/>
</code>
</pre>
</div>
</div>
<div class="step_2">
Some components may require use of <code>JavaScript</code>, so include below code in
<code><body/></code> tag at the very end.
<div class="code-container">
<pre>
<code class="html">
<script src="https://shinobi-ui.netlify.app/repo.ee97a311.js"></script>
</code>
</pre>
</div>
</div>
</div>
</div>
</section>
<section id="footer">
<header>Made with <i class="fas fa-heart text-secondary"></i> by <span class="text-secondary">Vinit Kanse</span>
</header>
<div class="social-links">
<i class="fab fa-linkedin"></i>
<i class="fab fa-github"></i>
</div>
<span class="copyright text-light">© 2022 - 2023 <span class="text-primary text-bold">Shinobi
UI</span></span>
</section>
<button title="Top" class="btn floating-btn primary" data-top>
<i class="fas fa-chevron-up"></i>
</button>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/highlight.min.js"
integrity="sha512-IaaKO80nPNs5j+VLxd42eK/7sYuXQmr+fyywCNA0e+C6gtQnuCXNtORe9xR4LqGPz5U9VpH+ff41wKs/ZmC3iA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>hljs.highlightAll();</script>
</body>
</html>