-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (74 loc) · 3.24 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
<!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">
<meta name="author" content="Zabihulla Shaik" />
<meta name="keywords" content="HTML, CSS, Component library, UI" />
<meta name="description"
content="NeoZ UI is a Component Library using HTML and CSS, with pre-defined classes for usage in your projects." />
<link rel="icon" href="https://img.icons8.com/cute-clipart/64/000000/z.png" />
<link rel="stylesheet" href="./styles/main.css" />
<!-- Font Awesome Link -->
<script src="https://kit.fontawesome.com/f3f37212fa.js" crossorigin="anonymous"></script>
<title>NeoZ UI | Home</title>
</head>
<body>
<div class="page-wrap">
<!-- Header Starts -->
<header>
<nav class="navbar">
<div>
<a href="#" class="nav nav-logo">
<h3>NeoZ UI</h3>
</a>
</div>
<div>
<ul class="nav-links">
<li><a href="./index.html" class="nav nav-active nav-pills">Home</a></li>
<li>
<a href="./pages/documentation.html" class="nav nav-pills">Documentation</a>
</li>
<li>
<a href="./pages/installation.html" class="nav nav-pills">Installation</a>
</li>
<li>
<a href="#" class="nav nav-pills"><i class="fa-solid fa-moon"></i></a>
</li>
</ul>
</div>
</nav>
</header>
<!-- Header Ends -->
<!-- Main Starts -->
<main class="main">
<section class="section section-main">
<div class="container">
<h3 class="heading">Build faster, responsive sites with NeoZ UI</h3>
</div>
<p class="about">
Create your Components at a quicker pace using the NeoZ UI which is user-friendly and easily
customizable.
</p>
<div class="btn-container">
<a class="btn btn-secondary" href="./pages/installation.html">Installation</a>
<a class="btn btn-primary" href="./pages/documentation.html">Documentation</a>
</div>
</section>
</main> <!-- Main Ends -->
<!-- Footer Begins -->
<footer class="footer">
<p>Made by
<span class="text-highlighted">ZabihShaik</span>
</p>
<div class="social-links">
<a href="https://twitter.com/zabihshaik" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://github.com/zabihshaik" target="_blank"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/zabihullashaik" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</footer>
<!-- Footer Ends -->
</div>
</body>
</html>