-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.42 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Particle</title>
<meta name="description" content="homepage">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./utilities/styles.css">
</head>
<body>
<nav class="navbar">
<a href="#">
<h1 class="navbar__header">Particle UI</h1>
</a>
<ul class="navbar__list">
<a href="./documentation/index.html">
<li class="navbar__list__items">
Get Started</li>
</a>
<a href="https://github.com/Rohitprasad83/component-library" target="_blank">
<li class="navbar__list__items"><i class="fab fa-github"></i></li>
</a>
</ul>
</nav>
<main class="brand">
<div class="brand__name">Particle UI</div>
<div class="brand__details">A lightweight and flexible Css Library to build your responsive web interfaces.
</div>
<div class="brand__navigation">
<a href="./documentation/index.html"><button class="btn
btn__secondary">Get Started</button></a>
<a href="https://github.com/Rohitprasad83/component-library" target="_blank"><button
class="btn btn__secondary__outlined">Github</button></a>
</div>
</main>
</body>
</html>