-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (94 loc) · 3.45 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
<!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" />
<script
src="https://kit.fontawesome.com/efe28aa7fd.js"
crossorigin="anonymous"
></script>
<link
href="https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|
Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp"
rel="stylesheet"
/>
<link
rel="shortcut icon"
href="/images/favicon_io/apple-touch-icon.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="style.css" />
<title>UIWizard</title>
</head>
<body>
<nav>
<div class="logo">
<a href="#">
<img src="./images/favicon_io/favicon.ico" alt="UIWizard" />
<span class="h1">UIWizard</span>
</a>
</div>
<a
class="btn-primary btn"
href="https://github.com/VanshSh/UIWizard"
target="_blank"
>GitHub</a
>
</nav>
<main class="main--container">
<section class="main--container-left">
<img
src="./images/favicon_io/android-chrome-192x192.png"
alt="UIWizard"
/>
</section>
<section class="main--container-right">
<h1 class="h1 text-dark">UIWizard</h1>
<p class="p1">UIWizard is Smaller, Faster and Easier to Use.</p>
<p class="p1">
UIWizard provides equality for all devices: Desktop, Laptop,
Tablet, Mobile.
</p>
<p class="p1">
UIWizard is a tool that helps you create a beautiful and
functional user interface.
</p>
</section>
<div class="section--link">
<a class="btn btn-secondary" href="#install">Install</a>
<a class="btn btn-accent" href="./documents/document.html"
>Documentation</a
>
</div>
<hr />
<section id="install">
<h1 class="h1 text-dark">Install</h1>
<p class="p1">
Copy and Paste the following code in the head tag of your
HTML element.
</p>
</section>
<div class="snippet">
<script src="https://gist.github.com/VanshSh/6e55c45163df474ecc712c9ed3bddde7.js"></script>
</div>
</main>
<footer>
<div class="social--links">
<a href="https://twitter.com/Vanshsh2701"
><i class="fa-brands fa-twitter"></i
></a>
<a href="https://www.linkedin.com/in/vanshsharma27/"
><i class="fa-brands fa-linkedin-in"></i
></a>
<a href="https://github.com/VanshSh"
><i class="fa-brands fa-github"></i
></a>
</div>
<div class="copyright">
<p>© 2022 UIWizard.</p>
<p>Made with ❤️ by Vansh Sharma.</p>
</div>
</footer>
</body>
</html>