-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (105 loc) · 3.72 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
<!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>magniZent UI</title>
<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
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link rel="stylesheet" href="../../style/header.css" />
<link rel="stylesheet" href="../../style/menu.css" />
<link rel="stylesheet" href="../../style/mainContent.css" />
<link rel="stylesheet" href="../../style/codeSnippet.css" />
<link rel="stylesheet" href="../../style/footer.css" />
<link rel="stylesheet" href="../../style/sidecontent.css" />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="landing-page-container">
<div class="header">
<div
class="logo flex-container"
style="align-items: baseline; gap: 2rem"
>
<a href="index.html">
<h2 class="main-title">
magni<span class="bold-main-title">Z</span>ent
<span class="bold-main-title">UI</span>
</h2>
</a>
</div>
<div class="header-main-content">
<ul class="flex social-links-inner-container">
<a class="header-item" href="index.html"><li>Home</li></a>
<a class="header-item" href="./Docs/Introduction/introduction.html"
><li>Documentation</li></a
>
</ul>
</div>
<div class="social-links-container">
<ul class="flex social-links-inner-container">
<li>
<a href="https://github.com/Vishruta-Patil" target="_blank"
><i class="fab fa-github social-link-icon"></i
></a>
</li>
<li>
<a
href="http://www.linkedin.com/in/vishruta-patil-30106b204"
target="_blank"
><i class="fab fa-linkedin social-link-icon"></i
></a>
</li>
<li>
<a href="https://twitter.com/vishruta_patil" target="_blank"
><i class="fab fa-twitter social-link-icon"></i
></a>
</li>
<!-- <li>
<a href="#" target="_blank"
><i class="fas fa-moon social-link-icon"></i
></a>
</li> -->
</ul>
</div>
</div>
<div class="hero-container">
<div class="content">
<h1 class="title">
Rapidly build modular & responsive websites with magniZent UI
</h1>
<p class="sub-title">
magniZent UI is a simple, robust and customizable component library
that enables you to build your design system and develop web
applications faster.
</p>
<div class="btn-container">
<a href="./Docs/Introduction/introduction.html"
><button class="get-started-btn">Get Started</button></a
>
<a href="https://github.com/Vishruta-Patil/magniZent-UI">
<button class="btn outline-primary">GitHub</button>
</a>
</div>
</div>
<div class="hero-img">
<img
class="responsive-image"
src="./assets/undraw_programming_re_kg9v.svg"
alt=""
/>
</div>
</div>
</div>
<script src="./index.js"></script>
</body>
</html>