-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (86 loc) · 2.77 KB
/
index.html
File metadata and controls
88 lines (86 loc) · 2.77 KB
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
<!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" />
<meta name="author" content="Sanket Dhabarde" />
<meta name="description" content="UI Component Library" />
<!-- fevicon -->
<link rel="icon" type="image/x-icon" href="./Assets/Hallows_Sign.png" />
<!-- stylesheets -->
<link rel="stylesheet" href="./CSS/always.css" />
<link rel="stylesheet" href="./CSS/home.css" />
<title>Always | Home</title>
</head>
<body>
<header class="p-3">
<div class="header-brand">
<a href="./index.html" class="btn-link">Always</a>
</div>
</header>
<main class="grid-2-col">
<div class="content center-div p-5">
<div class="welcome">
<div class="welcome-header mb-3">
<h2>Always <span class="welcome-span">UI</span></h2>
</div>
<div class="welcome-content">
A simple, Easy to use and Easy to modify UI component-library. The
kind of UI library which will Always😉 stay by your side.
</div>
</div>
<div class="get-started pt-4">
<a href="./Pages/documentation.html" class="btn btn-primary btn-link"
>Get Started</a
>
<a
href="https://github.com/SanketDhabarde/component-library"
target="_blank"
class="btn btn-link btn-secondary"
>GitHub</a
>
</div>
</div>
<div class="center-div p-5">
<img src="./Assets/hero.svg" alt="hero" class="img-responsive" />
</div>
</main>
<hr class="separator" />
<footer class="center-div">
<div class="footer-content p-4">
<p class="pt-2">
Made with
<span class="footer-icon"><i class="fas fa-heart"></i></span> by
Sanket Dhabarde
</p>
<div class="footer-link mt-2 center-div">
<a
class="m-1"
href="https://github.com/SanketDhabarde"
target="_blank"
><i class="fab fa-github"></i
></a>
<a
class="m-1"
href="https://twitter.com/SanketDhabarde1"
target="_blank"
><i class="fab fa-twitter"></i
></a>
<a
class="m-1"
href="https://www.instagram.com/sanket_dhabarde/"
target="_blank"
><i class="fab fa-instagram"></i
></a>
<a
class="m-1"
href="https://www.linkedin.com/in/sanket-dhabarde-91b028166/"
target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
</div>
</div>
</footer>
</body>
</html>