-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (101 loc) · 3.64 KB
/
index.html
File metadata and controls
121 lines (101 loc) · 3.64 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
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" />
<!-- Paste this code in your HTML File's Head Section -->
<script src="https://kit.fontawesome.com/5548c84970.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://bee-ui.netlify.app/styles/main.css" />
<!-- Happy Coding 😊 -->
<script defer src="./components/navbar/navbar.js"></script>
<title>Bee UI</title>
</head>
<body>
<!-- ------ -->
<!-- Navbar Starts -->
<!-- ------ -->
<header>
<nav class="flex">
<!-- nav content -->
<logo-content class="flex">
<div class="logo-img ">
<img src="../assets/bee-icon-purple-short.png" alt="">
</div>
<h2><a href="/index.html">BEE UI</h2>
</logo-content>
<!-- nav menu -->
<!-- nav btn -->
<button class="menu-btn">
<ion-icon size="large" name="menu"></ion-icon>
</button>
<nav-menu data-visible="false">
<ul class="flex">
<li><a href="./pages/docPage.html">Documentation</a></li>
<li><a href="https://github.com/Varu98/BeeUI">Github</a></li>
<li><a href="https://www.linkedin.com/in/vardaan-agarwal-a58a898b/">Linkedin</a></li>
<li><a href="https://twitter.com/agarwal_vardaan">Twitter</a></li>
</ul>
</nav-menu>
</nav>
</header>
<!-- ------ -->
<!-- Primary Section Starts -->
<!-- ------ -->
<section class="primary-section flex-row">
<div class="section-content flex-column">
<h2>Get Buzzy developing With Bee UI</h2>
<p>
The Buzz of the town, quick and easy to implement, light-weight UI
components to get you started with your projects in a jiffy
</p>
<div class="section-btns">
<button class="secondary-btn"><a href="https://github.com/Varu98/BeeUI">Github</a></button>
<button class="primary-btn"><a href="#install">Installation</a></button>
</div>
</div>
<div class="hero-img">
<img src="./assets/pablo-983.png" alt="" />
</div>
</section>
<!-- ------ -->
<!-- Secondary Section Starts -->
<!-- ------ -->
<main>
<div class="flex-column align-center">
<h1><a id="install">Installation</a></h1>
<p>
Copy and paste the code in the head tag of your html document. So that
you can style your components just by adding class names to your html
elements.
</p>
<p>
To know about the styled components, their variations, read the
documentation
</p>
<div class="section-btns">
<button class="primary-btn"><a href="./pages/docPage.html">Documentation</a></button>
</div>
</div>
<code>
<script src="https://emgithub.com/embed.js?target=https%3A%2F%2Fgithub.com%2FVaru98%2FBeeUI%2Fblob%2F77576a18aff03c20269f5954f292fe3527854e3f%2Findex.html%23L9-L14&style=atom-one-light&showBorder=on&showLineNumbers=on&showFileMeta=on&showCopy=on&fetchFromJsDelivr=on"></script>
</code>
</main>
<footer class="bg-d-blue flex-row">
<div class="navbar-list navbar-social">
<ul class="flex-row">
<li>
<a href="" class="fa-icon text-white"><i class="fab fa-github"></i></a>
</li>
<li>
<a href="" class="fa-icon text-white"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="" class="fa-icon text-white"><i class="fab fa-linkedin"></i></a>
</li>
</ul>
</div>
</footer>
<script src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons.js"></script>
</body>
</html>