-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (95 loc) · 3.02 KB
/
index.html
File metadata and controls
95 lines (95 loc) · 3.02 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
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="Kuldeep Gupta" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap"
/>
<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"
/>
<link rel="stylesheet" href="./styles/style.css" />
<link rel="stylesheet" href="./styles/margin.css" />
<link rel="stylesheet" href="./styles/padding.css" />
<link rel="icon" href="./assets/logo.png" type="image/icon type" />
<title>Arc UI | Home</title>
</head>
<body>
<header class="header">
<div class="header-wrapper">
<img class="logo" src="./assets/logo.png" alt="Arc UI Logo" />
<a class="header-heading" href="./index.html">Arc UI</a>
</div>
<div class="header__nav">
<nav>
<ul>
<li>
<a
target="_blank"
class="social-icons-wrapper"
href="https://twitter.com/devdeadviz"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a
target="_blank"
class="social-icons-wrapper"
href="https://www.linkedin.com/in/devdeadviz/"
>
<i class="fab fa-linkedin"></i
></a>
</li>
<li>
<a
target="_blank"
class="social-icons-wrapper"
href="https://github.com/devdeadviz"
><i class="fab fa-github"></i
></a>
</li>
</ul>
</nav>
</div>
</header>
<main class="main-wrapper">
<div class="content-wrapper">
<h1 class="content-heading">
<img class="main-logo" src="./assets/logo.png" alt="Arc UI Logo" />
Arc UI
</h1>
<p class="content-subHeading">
A lightweight front-end framework for developing Creative and powerful
UIs using the <b>Arc</b> library.
</p>
<div class="btn-wrapper">
<a
role="button"
class="btn btn-primary link-btn m-2"
href="./pages/get-started/intro.html"
>
Documentation
</a>
<a
role="button"
class="btn btn-outline-secondary link-btn m-2"
href="https://github.com/devdeadviz/arc-ui"
>
Github
</a>
</div>
</div>
<img class="content-image" src="./assets/web.webp" alt="landing-image" />
</main>
<footer class="footer">
<p class="footer-text">Develop with ❤️ by Kuldeep Gupta</p>
</footer>
</body>
</html>