-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 2.11 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
<!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>CrystalUi</title>
<link rel="icon" href="./svg/logo.svg" type="image/icon type" />
<link rel="stylesheet" href="./styles/reset.css" />
<link rel="stylesheet" href="./styles/navbar.css" />
<link rel="stylesheet" href="./styles/main.css" />
</head>
<body>
<header class="nav-container">
<nav class="navbar">
<span class="nav-logo">CrystalUi</span>
<div class="nav-div">
<ul class="nav-links">
<li><a href="/component.html" class="link">Docs</a></li>
<li><a href="#" class="link">Examples</a></li>
<li>
<a
href="https://github.com/MiheerTamkhane/CrystalUi/tree/main"
class="link"
target="_blank"
>GitHub</a
>
</li>
</ul>
</div>
</nav>
</header>
<main class="main">
<img src="./svg/logo.svg" alt="snowflake" class="main-logo" />
<h1>CRYSTAL Ui</h1>
<p>CrystalUi is elegant, fast and free to use CSS library.</p>
<a href="/component.html#intro" class="get-started">GET STARTED</a>
</main>
<footer class="footer">
<p>
Crafted with 💙 By
<a
href="https://miheertamkhane.netlify.app/"
class="link"
target="_blank"
>Miheer</a
>
</p>
<div class="socials">
<a href="https://github.com/MiheerTamkhane" target="_blank">
<img src="./svg/github.svg" alt="github" />
</a>
<a href="https://twitter.com/MiheerTamkhane" target="_blank">
<img src="./svg/twitter.svg" alt="twitter" />
</a>
<a
href="https://www.linkedin.com/in/miheer-tamkhane-19417b19a/"
target="_blank"
>
<img src="./svg/linkedin.svg" alt="linkedin" />
</a>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>