-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstallation.html
115 lines (104 loc) · 4.88 KB
/
installation.html
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
<!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="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/css/main.css" />
<link rel="stylesheet" href="/css/components.css" />
<title>Installation</title>
</head>
<body>
<div class="content">
<!-- navbar : remains same for all pages -->
<nav>
<div class="logo"><a href="../../index.html">KairoDesigns</a></div>
<div class="nav-links">
<ul>
<li><a href="./installation.html">Installation</a></li>
<li><a href="./components/Avatar/Avatar.html">Get Started</a></li>
</ul>
</div>
</nav>
<div class="page-content">
<!-- sidenav bar : remains same for all components page -->
<!-- main content: changes acc to selected component -->
<div class=" install">
<p>
To begin using the styles provided by <span>Kairo Designs</span> <br/> in
your project, put the URL supplied in the code snippet below
stylesheets link in your project. <br/> This is a free, open source library that provides ready-to-use frontend components
</p>
<div class="code-example-block">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28242%2C215%2C238%2C1%29&t=blackboard&wt=none&l=auto&width=760&ds=true&dsyoff=0px&dsblur=100px&wc=true&wa=true&pv=41px&ph=40px&ln=false&fl=1&fm=Hack&fs=10px&lh=108%25&si=false&es=2x&wm=false&code=%253Clink%2520rel%253D%2522stylesheet%2522%2520href%253D%2522https%253A%252F%252Fkairodesigns.netlify.app%252Fstyles.css%2522%2520%252F%253E"
style="
width: 100%;
margin: auto;
height: 240px;
border: 0;
transform: scale(1);
overflow: hidden;
"
sandbox="allow-scripts allow-same-origin"
>
</iframe>
</div>
<p>
To get the Font Awesome Icons, import the following link tag of your
project.
</p>
<div class="code-example-block">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28242%2C215%2C238%2C1%29&t=blackboard&wt=none&l=auto&width=760&ds=true&dsyoff=0px&dsblur=100px&wc=true&wa=true&pv=41px&ph=40px&ln=false&fl=1&fm=Hack&fs=10px&lh=108%25&si=false&es=2x&wm=false&code=%2520%253Clink%250A%2520%2520%2520%2520%2520%2520rel%253D%2522stylesheet%2522%250A%2520%2520%2520%2520%2520%2520href%253D%2522https%253A%252F%252Fpro.fontawesome.com%252Freleases%252Fv5.10.0%252Fcss%252Fall.css%2522%250A%2520%2520%2520%2520%2520%2520integrity%253D%2522sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg%252Bp%2522%250A%2520%2520%2520%2520%2520%2520crossorigin%253D%2522anonymous%2522%250A%2520%2520%2520%2520%252F%253E"
style="
width: 100%;
margin: auto;
height: 360px;
border: 0;
transform: scale(1);
overflow: hidden;
"
sandbox="allow-scripts allow-same-origin"
>
</iframe>
</div>
<footer class="page-footer">
<a class="foot-item" href="./index.html"
><i class="far fa-hand-point-left"></i>Home</a
><a class="foot-item" href="./components/Avatar/Avatar.html"
>Avatar<i class="far fa-hand-point-right"></i
></a>
</footer>
</div>
</div>
</div>
<section class="quiz-foot">
<p class="left-foot">
© | 2022 | <span class="logo-clr">Sakshi ♥ KairoDesigns</span>
</p>
<p class="right-foot">
<ul class="social-media-links">
<li class="list-item-inline">
<a target="blank" class="link" href="https://github.com/sakshi006"><i class="fab fa-github"></i></a>
</li>
<li class="list-item-inline">
<a target="blank" class="link" href="https://www.linkedin.com/in/sakshi-kumar-789649172/"><i class="fab fa-linkedin"></i></a>
</li>
<li class="list-item-inline">
<a target="blank" class="link" href="https://twitter.com/Sakshiii6_"><i class="fab fa-twitter-square"></i></a>
</li>
<li class="list-item-inline">
<a target="blank" class="link" href="https://www.instagram.com/_.sakshiii_._/"><i class="fab fa-instagram"></i></a>
</li>
</ul>
</p>
</section>
</body>
</html>