-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (69 loc) · 2.67 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
<!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 | Max UI</title>
<link rel="stylesheet" href="./styles/index.css" />
<link rel="stylesheet" href="./components/max.css" />
<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=Fira+Code&family=Poppins:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<script src="https://kit.fontawesome.com/8269a6457c.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="header drop-shadow-md">
<div class="header__wrapper">
<a href="/">
<img src="/images/logo.png" class="header__logo" alt="Max UI Component library logo"
/></a>
<div class="header__links">
<a href="/">Home</a>
<a href="/docs.html#quickstart">Docs</a>
<a href="https://github.com/jalajcodes/max-ui">Github</a>
<div class="theme-switcher">
<label class="theme-switcher__label" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="sun"></div>
</label>
</div>
</div>
</div>
</header>
<main class="container">
<div class="container__info">
<div class="frame-image"></div>
<h1>
Design <span>Beautiful</span> Websites with
<img src="./images/max.png" alt="max" /> Speed.
</h1>
<div class="cta">
<a href="/docs.html#quickstart"
><button class="btn btn--primary btn--lg"><i class="fas fa-book"></i>Docs</button></a
>
<a href="https://github.com/jalajcodes/max-ui"
><button class="btn btn--primary btn--lg btn--outline">
<i class="fab fa-github"></i> GitHub
</button></a
>
</div>
</div>
<footer class="footer">
<span
>Made with <i class="fas fa-code fa-flip"></i> by <strong>Jalaj Gupta</strong>
</span>
<div class="footer__links">
<a href="https://twitter.com/jalajcodes"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/jalajcodes"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/jalajgupta"><i class="fab fa-linkedin"></i></a>
<a href="mailto:[email protected]"><i class="fas fa-envelope"></i></a>
</div>
</footer>
</main>
<script src="./js/feature.js"></script>
</body>
</html>