-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (81 loc) · 3.71 KB
/
index.html
File metadata and controls
90 lines (81 loc) · 3.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CSS Framework</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container-fluid navbar py-3 bg-accent">
<div class="navbar-logo">
<a href="">
<h1>CSS Framework</h1>
</a>
</div>
<div class="navbar-toggler">
<div class="bar one"></div>
<div class="bar two"></div>
<div class="bar three"></div>
</div>
<nav class="navbar-nav">
<a href="#">Curriculum</a>
<a href="#">Community</a>
<a href="#">About</a>
<a href="#">FAQ</a>
<a href="#">Sign Up</a>
<a href="#">Login</a>
</nav>
</div><!-- end of navbar-->
<div class="bg-tertiary mb-3">
<div class="container large">
<section class="main text-white">
<h1>The Best CSS Framework Yet</h1>
<p class="mb-2">Our CSS Framework is designed and supported<br> by a passionate open source community.</p>
<p class="love mb-3">Made with love</p>
<a class="btn mt-3" href="https://github.com/suretrust/css-framework">Check Our Source Code</a>
</section>
</div>
</div><!-- tertiary for main ends-->
<section class="container text-center py-3 my-3">
<div class="details row">
<div class="col-6 col-medium-2">
<img src="img/grid.png" alt="Grid">
<h3 class="text-tertiary my-3">Grid System</h3>
<p class="text-gray-3 pb-3 mb-3">Our Grid Layout Module offers a grid-based layout system, with rows
and columns, making it easier to design web pages without having to use floats and positioning.</p>
</div>
<div class="col-6 col-medium-2">
<img src="img/responsive.png" alt="Responsive">
<h3 class="text-tertiary my-3">Responsive Design</h3>
<p class="text-gray-3 pb-3 mb-3">Our Responsive Web Design is about using HTML and CSS to automatically
resize, hide, shrink, or enlarge, a website, to make it look good on all devices.</p>
</div>
<div class="col-6 col-medium-2">
<img src="img/design.png" alt="Design">
<h3 class="text-tertiary my-3">Minimal Design</h3>
<p class="text-gray-3 pb-3 mb-3">With our design, “less is more”. While this may sound cliché, that is
what our framework offers. Clean, elegant and beautiful, yet simple designs!</p>
</div>
</div>
</section>
<div class="how bg-accent text-center py-3">
<section class="container py-3">
<h2 class="my-3 text-uppercase text-primary">How it Works</h2>
<p class="text-primary">Our grid system is used for layout, specifically responsive layouts.
Understanding how it works is vital to understanding our framework. The grid is made up of groupings of
rows & columns inside one or more containers. The JavaScript and some other CSS comh6ponents are used
to make the navigation bar responsive.</p>
</section>
</div>
<footer class="container navbar">
<div class="navbar-logo">
<h1>CSS Framework</h1>
</div>
<p>Designed with ♥ by Jeton and Saheed</p>
</footer>
<div class="overlay"></div><!-- this stays just before the nav script-->
<script src="js/css-framework.js"></script>
</body>
</html>