-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
121 lines (121 loc) · 4.42 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
110
111
112
113
114
115
116
117
118
119
120
121
<!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" />
<link rel="stylesheet" href="Documentation/css/landing.css" />
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon" />
<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=Montserrat:wght@400;500;600;700;800;900&display=swap"
rel="stylesheet" />
<script
src="https://kit.fontawesome.com/0ae1aebe6f.js"
crossorigin="anonymous"></script>
<title>PowertrainUI | Get Started</title>
</head>
<body>
<div class="wrapper">
<div class="header pos-st top-left-pos py-md">
<header class="max-width-1200 px-md dis-flex mx-auto">
<div class="logo">
<a href="./index.html">PowertrainUI</a>
</div>
<button class="hamburger-menu"><i class="fas fa-bars"></i></button>
<nav class="navbar mobile-navbar flex-center flex-grow-1">
<button class="nav-close-btn">
<i class="fas fa-2x fa-times"></i>
</button>
<ul class="ml-2 menu h-100">
<li class="menu-list">
<a href="#" class="menu-item btn btn-md mx-1 active">Home</a>
</li>
<li class="menu-list">
<a
href="./Documentation/html/alert.html"
class="menu-item btn btn-md mx-1">
Docs
</a>
</li>
<li class="menu-list">
<a
href="https://github.com/Hamdrive"
class="menu-item btn btn-md mx-1">
Github
</a>
</li>
</ul>
</nav>
</header>
</div>
<div class="main py-md">
<main
class="max-width-1200 main grid grid-cols-2 gap-2 grid-ver-center min-vh-85 mx-auto px-lg">
<div class="content ml-4">
<h1 class="content-title my-1">
Take pole easily with
<u>PowertrainUI</u>
</h1>
<p class="content-brief">
Build quicker and with ease of mind using
<strong>PowertrainUI</strong>
, which gives your website the look you want, while ensuring
maximum performance each and everytime.
</p>
<a href="./Documentation/html/getstarted.html" class="">
<button class="btn btn-def btn-lg start-btn">Get Started</button>
</a>
</div>
<div class="hero">
<img class="mx-auto" src="./assets/hero-img.svg" alt="" />
</div>
</main>
</div>
<div class="footer py-md">
<footer
class="max-width-1200 grid grid-cols-2 gap-2 grid-ver-center mx-auto px-lg">
<div class="footer-info">
<div class="footer-social py-sm">Socials</div>
<ul class="footer-social-icons dis-flex gap-2 py-sm">
<li>
<a href="https://github.com/Hamdrive">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href="https://twitter.com/itsHamhere">
<i class="fab fa-twitter-square"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/hamza-husein/">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://peerlist.io/hamza">
<i class="fas fa-parking"></i>
</a>
</li>
</ul>
<div class="footer-outro py-sm">
Designed with 💚 by
<strong>Hamza Husein</strong>
</div>
</div>
<div class="footer-brief">
<div class="py-sm">
Illustrations by
<u><a href="https://storyset.com">Storyset</a></u>
</div>
<div class="py-sm">Version 1.0.0</div>
<div class="py-sm">© PowertrainUI, 2022 All rights reserved.</div>
</div>
</footer>
</div>
</div>
<script src="./index.js"></script>
</body>
</html>