-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
158 lines (146 loc) · 4.35 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!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>Posh UI | Now design your project Faster and Better</title>
<!-- favicon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/brand-logos/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/brand-logos/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/brand-logos/favicon-16x16.png"
/>
<!-- font awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- poshui-components cdn -->
<link
rel="stylesheet"
href="https://poshui-components.netlify.app/css/main.css"
/>
<!-- poshui-documentation css -->
<link rel="stylesheet" href="app.css" />
</head>
<body>
<div class="container m-auto p-2">
<header class="header">
<img
loading="lazy"
class="img-brand-logo"
src="assets/brand-logos/brand-logo.png"
alt="brand logo"
/>
<a class="link-brand mx-1" href="index.html">Posh UI</a>
<nav class="align-i-ctr flex ml-auto">
<ul>
<li class="inline-block mx-1">
<a class="link" href="index.html">Home</a>
</li>
<li class="inline-block mx-1">
<a class="link" href="pages/getting-started/introduction.html">
Docs
</a>
</li>
<li class="inline-block mx-1">
<a
class="link"
href="https://github.com/hsnice16/PoshUI-Documentation"
target="_blank"
>
GitHub
</a>
</li>
</ul>
<button class="btn-theme translate-y">
<i class="far fa-moon"></i>
</button>
</nav>
</header>
<main class="main">
<div>
<h1>
Now design your project faster and better with
<span class="block">Posh UI</span>
</h1>
<a href="pages/getting-started/introduction.html">
<button class="btn btn-primary-solid btn-squared btn-home">
Get Started
</button>
</a>
<a
href="https://github.com/hsnice16/PoshUI-Documentation"
target="_blank"
>
<button
class="btn btn-primary-outline btn-squared btn-home btn-home-outline"
>
GitHub
</button>
</a>
</div>
</main>
<footer class="footer-home">
<div class="text-center">
<div class="fs-1p7 fw-bold my-1 text-slate-800">Connect with me</div>
<ul class="flex">
<li class="mx-1 translate-y">
<a
href="https://twitter.com/hsnice16"
class="fs-2 link"
target="_blank"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="mx-1 translate-y">
<a
href="https://github.com/hsnice16/"
class="fs-2 link"
target="_blank"
>
<i class="fab fa-github"></i>
</a>
</li>
<li class="mx-1 translate-y">
<a
href="https://www.linkedin.com/in/hsnice16/"
target="_blank"
class="fs-2 link"
>
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li class="mx-1 translate-y">
<a
href="https://www.instagram.com/hsnice16/"
target="_blank"
class="fs-2 link"
>
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
</div>
</footer>
</div>
<script src="js/app.js"></script>
</body>
</html>