-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (60 loc) · 2.45 KB
/
Copy pathindex.html
File metadata and controls
66 lines (60 loc) · 2.45 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
<!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="./main.css" />
<link rel="icon" type="image/png" href="./assets/favicon-iu.png" />
<script src="https://kit.fontawesome.com/8831240330.js" crossorigin="anonymous"></script>
<title>Intact UI</title>
</head>
<body>
<nav class="nav-section">
<a href="./index.html" id="logo">
<h1 class="primary-color-text fw-900 text-l">
Intact <span class="secondary-color-text fw-600 text-l">UI</span>
</h1>
</a>
<a href="./components/docs.html">
<p id="docs" class="text-s secondary-color-text fw-600">Docs</p>
</a>
</nav>
<main>
<section class="main-content">
<h1 class="fw-900 text-xl primary-color-text">INTACT <span class="secondary-color-text">UI</span></h1>
<p class="fw-400 text-s secondary-color-text">
It is a
<span class="primary-color-text fw-400">light weight</span> and <span class="primary-color-text fw-400">easy-to-use</span> CSS library to develop web apps
</p>
<div id="cta-btngrp">
<a href="./components/docs.html">
<button class="btn btn-primary text-s">Get started</button>
</a>
<a href="https://github.com/Meghana-sk/Intact-UI/tree/devIntact">
<button class="btn btn-secondary-outline text-s">Github</button></a>
</div>
</section>
</main>
<footer class="footer">
<h4 class="secondary-color-text text-s fw-600">Get in touch</h4>
<ul>
<li class="secondary-color-text text-s fw-600">
<a href="https://github.com/Meghana-sk">
<i class="fab fa-github fa-2x"></i>
</a>
</li>
<li class="secondary-color-text text-s fw-600">
<a href="https://www.linkedin.com/in/meghanask">
<i class="fab fa-linkedin fa-2x"></i>
</a>
</li>
<li class="secondary-color-text text-s fw-600">
<a href="https://twitter.com/meghana__sk">
<i class="fab fa-twitter fa-2x"></i>
</a>
</li>
</ul>
</footer>
</body>
</html>