-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (98 loc) · 4.38 KB
/
index.html
File metadata and controls
101 lines (98 loc) · 4.38 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
<!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">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/styles/a11y-dark.min.css">
<link rel="stylesheet" href="./styles/breeze.css">
<link rel="stylesheet" href="./index.css" class="stylesheet">
<link rel="stylesheet" href="./styles/docs.css">
<title>Breeze.css</title>
</head>
<body>
<header class="navbar landing-nav">
<span class="logo">
<img src="./assets/logo.svg" alt="logo" width="35px" height="35px" />
</span>
<a href="" class="brand-name h6">
Breeze.css
</a>
<div class="navbar-items">
<nav>
<a href="./pages/colors.html" class="github-btn" >
<span class="text-md">Docs</span>
</a>
<a href="https://github.com/chanchal16/breeze.css" class="github-btn" target="_blank">
<i class="fab fa-github fa-2x"></i>
</a>
</nav>
</div>
</header>
<div class="hero-section">
<h3>Design your next project faster and better.</h3>
<p>A simple, modular and accessible component library that gives you the building
blocks you need to build your applications.</p>
<div class="btn-div">
<button id="btnId">
Installation</button>
<button class="secondary-btn">
<a href="./pages/colors.html">Documentation</a>
</button>
</div>
</div>
<!----installation------>
<section class="installation" id="sectiondiv">
<h4 class="install-heading">Installation Guide</h4>
<p class="install-desc">Copy the Link given below and paste it in the <head> tag of
your html, above all other style sheets.<br> So that you can style your components by just
adding class names to your html elements.
</p>
<!--code-snippet---->
<div class="code-div">
<pre>
<code class="language-html"> <link rel='stylesheet' href='https://breezecss.netlify.app/styles/breeze.css' ></code>
</pre>
</div>
<!-----starter template--->
<div class="starter-template">
<h4 class="template-heading">Starter Template</h4>
<p class="template-desc">
Be sure to have your pages set up with the latest design and development standards.
That means using an HTML5 doctype and including a viewport meta tag for proper responsive behaviors. Put it all together and your pages should look like this:
</p>
<a class="doc-btn" href='./pages/colors.html'>Documentation</a>
</div>
<!--code-snippet---->
<div class="code-div">
<img src="./assets/snippet.svg" alt="code" class="res-image" />
</div>
</section>
<button class="button fab-primary" id="backToTop">
<i class="fas fa-angle-double-up"></i>
</button>
<!----footer---->
<footer class="footer">
<p class="text-md footer-header">made by <span>Chanchal</span></p>
<div class="socials">
<a class="links" href="https://github.com/chanchal16" target="_blank" >
<i class="fab fa-github fa-2x"></i>
</a>
<a class="links" href="https://twitter.com/chanchal16_" target="_blank">
<i class="fab fa-twitter fa-2x"></i>
</a>
<a class="links" href="https://www.linkedin.com/in/rajput07/" target="_blank">
<i class="fab fa-linkedin-in fa-2x"></i>
</a>
</div>
<p class="text-xs footer-header">© 2022 <span>Breeze.css</span></p>
</footer>
<script src="./index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
</body>
</html>