-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
202 lines (177 loc) · 6.37 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!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>Home| Inclusive UI</title>
<!-- font-family-->
<!--Poppins-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<!-- Montserrat -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
/>
<!-- prism -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.26.0/themes/prism.min.css"
/>
<link rel="stylesheet" href="https://inclusive-ui.netlify.app/library/inclusive-ui.css">
<link rel="stylesheet" href="./docs/main.css" />
</head>
<body>
<div class="container">
<header class="header flex-row">
<a class="hamburger" href="#navbar" aria-label="Open main menu">
<span class="sr-only">Open main menu</span>
<span class="fas fa-bars" aria-hidden="true"></span>
</a>
<a href="../index.html">
<span class="logo">Inclusive UI</span>
</a>
<nav id="navbar" class="flex-row">
<ul class="navitems__container flex-row">
<li><a href="#">Home Page</a></li>
<li><a href="./docs/documentation.html">Documentation</a></li>
<li>
<a
href="https://github.com/purohitdheeraj/Inclusive-Design"
target="_blank"
>
<span
class="fa-brands fa-github fa-2x"
aria-hidden="true"
></span>
<span class="sr-only">Github</span></a
>
</li>
</ul>
<a class="close" href="#" aria-label="Close main menu">
<span class="sr-only">Close main menu</span>
<span class="fas fa-times" aria-hidden="true"></span>
</a>
</nav>
</header>
<main>
<div class="main__content">
<h1 class="title">Inclusive UI</h1>
<span class="slogan">A Design Library that benefits everyone</span>
<div class="info">
<p class="about">
Design with accessibilty and inclusion give more people a chance
to interact with your product and get a positive experience
</p>
<p class="author-name">
By
<a href="https://peerlist.io/purohitdheeraj">Dheeraj Purohit</a>
</p>
</div>
</div>
<div class="cta_buttons">
<a
href="#installation"
class="btn-primary-outline btn-cta"
title="go-to installation"
>Installation</a
>
<a href="./docs/documentation.html" class="btn-primary btn-cta"
>Documentation</a
>
</div>
</main>
<div class="gradient"></div>
<div id="installation" class="installation flex-row">
<div class="installation__text flex-column">
<h2>
Installation Guidelines for using Inclusive UI in your Project
</h2>
<ul>
<li>
Put this <code> link tag</code> in the head tag of your webpage
</li>
<li>For Icons Font Awesome has been used</li>
<li>
Also Include the link of font-awesome in head tag of your webpage
</li>
</ul>
<h2>Feature of Inclusive UI</h2>
<ul>
<li>Based on Inclusive Design Principles</li>
<li>Semantic Elements</li>
<li>Accessibility</li>
<li>
Follows
<a href="https://www.w3.org/WAI/standards-guidelines/wcag/"
>WCAG</a
>
guidelines
</li>
</ul>
<div class="cta_buttons">
<a
title="goto documentation page :->"
href="./docs/documentation.html"
class="btn-primary btn-cta"
>Documentation</a
>
</div>
</div>
<div class="installation__code">
<pre
class="code__snippet"
><code class="language-html"><!-- Exclusive Link for using Inclusive UI -->
<link rel="stylesheet" href="https://inclusive-ui.netlify.app/library/inclusive-ui.css">
<!-- Font Awesome Link used in Design Library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" /></code>
</pre>
</div>
</div>
<div class="gradient"></div>
<footer class="flex-column">
<nav>
<h2 class="font-24">Dheeraj Purohit · Web Engineer</h2>
<ul class="flex-row">
<li>
<a href="https://www.linkedin.com/in/dheeraj-purohit-79ba4a168" target="_blank">
<span class="fab fa-linkedin fa-2x" aria-hidden="true"></span>
<span class="sr-only">LinkedIn</span></a>
</li>
<li>
<a href="https://twitter.com/the_indianyoga" target="_blank">
<span class="fab fa-twitter fa-2x" aria-hidden="true"></span>
<span class="sr-only">Twitter</span></a>
</li>
<li>
<a href="https://github.com/purohitdheeraj" target="_blank">
<span class="fab fa-github fa-2x" aria-hidden="true"></span>
<span class="sr-only">Github</span></a>
</li>
</ul>
<p class="font-24">
<small>
© Inclusive UI <span class="fa fa-heart"></span>
</small>
</p>
</nav>
</footer>
</div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.26.0/prism.min.js"
integrity="sha512-pSVqGtpGygQlhN8ZTHXx1kqkjQr30eM+S6OoSzhHGTjh6DKdfy7WZlo1DNO9bhtM0Imf6xNLznZ7iVC2YUMwJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
</body>
</html>