-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
86 lines (76 loc) · 2.74 KB
/
index.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
<!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" />
<!-- Font Awesome -->
<script src="https://use.fontawesome.com/f9281fa301.js"></script>
<!-- CSS -->
<link rel="stylesheet" href="./css/index.css" />
<title>CaptureUI</title>
</head>
<body>
<!-- Nav Bar -->
<nav>
<a href="#" class="nav-logo"> captureUI</a>
<div class="nav-links">
<a
href="https://github.com/himadri2110/component-library"
target="_blank"
><i class="fa fa-github"></i
></a>
</div>
</nav>
<!-- Hero section -->
<section class="hero">
<div class="hero-title">Capture components and build your dream UI</div>
<div class="hero-subtitle">
With captureUI, focus on developing your project while we take care of
building your UI
</div>
<div class="hero-cta">
<a href="#installation"
><button class="btn btn-primary">Get Started</button></a
>
</div>
</section>
<!-- Installation section -->
<section class="installation" id="installation">
<div class="text">
<p>Installation Guide</p>
<div class="content">
To use captureUI in your project, copy the CDN link and paste it in
the <code>head</code> of the <code>HTML</code> file of your project.
</div>
<div class="installation-cta">
<a href="/components/avatar/avatar.html"
><button class="btn btn-primary">Documentation</button></a
>
</div>
</div>
<div class="inst-iframe">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28196%2C181%2C251%2C1%29&t=shades-of-purple&wt=bw&l=htmlmixed&width=701.125&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=false&pv=56px&ph=56px&ln=true&fl=1&fm=Fira+Code&fs=14px&lh=143%25&si=false&es=2x&wm=false&code=%253Clink%2520rel%253D%2522stylesheet%2522%2520href%253D%2522https%253A%252F%252Fcapture-ui.netlify.app%252Fcss%252Fcomponents.css%2522%252F%253E"
sandbox="allow-scripts allow-same-origin"
>
</iframe>
</div>
</section>
<!-- Footer -->
<footer>
<div class="author">Himadri Shah</div>
<div class="social-icons">
<a href="https://github.com/himadri2110" target="_blank"
><i class="fa fa-github"></i
></a>
<a href="https://twitter.com/himadri2110" target="_blank"
><i class="fa fa-twitter"></i
></a>
<a href="https://linkedin.com/in/himadri2110" target="_blank"
><i class="fa fa-linkedin"></i
></a>
</div>
</footer>
</body>
</html>