-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
97 lines (92 loc) · 3.77 KB
/
homepage.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
<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="./css/index.css">
<title>StyleForge</title>
</head>
<body>
<!-- navbar -->
<nav class="navbar justify-between">
<div class="container">
<h1 class="site-title text-lightblue"><a href="homepage.html">StyleForge</a></h1>
<ul class="display-f">
<li class="ml-1 text-hover-yellowish pr-2"><a href="documentation.html">Documentation</a></li>
<li class="ml-1 text-hover-yellowish pl-2"><a href="index.html">Examples</a></li>
</ul>
</div>
</nav>
<!-- intro -->
<div class="container mt-5">
<div class="row justify-center">
<div class="col-12-xs col-5-md">
<h2>
<div class="font-xxl">Forge</div>
<div class="font-xxl text-pinkish">A better Website</div>
</h2>
<p class="text-gray mt-2 mb-3">With the easiest to use css framework!</p>
<a href="documentation.html" class="btn-outlined-lightblue text-lightblue text-hover-white">Find Out How</a>
</div>
<div class="col-12-xs col-5-md">
<img src="./img/laptop.jpg" alt="">
</div>
</div>
</div>
<!-- about -->
<section id="about" class="bg-yellowish-light-3 mt-5 pt-4 pb-4">
<div class="container">
<h2 class="mb-2 text-pinkish">About StyleForge</h2>
<p>StyleForge is an easy to use css framework built using SCSS/SASS. It is a mobile first framework modelled after the syntax of Bootstrap and Tailwind.</p>
<p class="mt-1">StyleForge features everything you would expect from a modern css framework. Easy and clean syntax and a host of features flushed out with everything you could need to build your website from simple colours and utility classes to higher level components like cards and nav bars.</p>
</div>
</section>
<!-- work section -->
<section id="work" class="mt-5">
<div class="container">
<h2 class="mb-2 text-lightblue">Some of Our Work</h2>
<div class="row gap-2">
<div class="col-12-xs col-6-md col-3-lg">
<div class="card p-0">
<h3 class="card-title m-1">
Example Here <span class="badge-orange text-white ml-1">new</span>
</h3>
<img src="/img/mario.png" alt="">
<p class="m-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Totam, hic!</p>
</div>
</div>
<div class="col-12-xs col-6-md col-3-lg">
<div class="card p-0">
<h3 class="card-title m-1">Example Here</h3>
<img src="/img/food.png" alt="">
<p class="m-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Totam, hic!</p>
</div>
</div>
<div class="col-12-xs col-6-md col-3-lg">
<div class="card p-0">
<h3 class="card-title m-1">Example Here</h3>
<img src="/img/marmite.png" alt="">
<p class="m-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Totam, hic!</p>
</div>
</div>
<div class="col-12-xs col-6-md col-3-lg">
<div class="card p-0">
<h3 class="card-title m-1">Example Here</h3>
<img src="/img/notes.png" alt="">
<p class="m-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Totam, hic!</p>
</div>
</div>
</div>
<div class="row justify-center mt-2">
<button class="btn-lightblue text-white font-md">View All</button>
</div>
</div>
</section>
<!-- footer -->
<footer class="bg-gray-light-7 pt-3 pb-3 mt-5">
<div class="container">
<p class="text-pinkish">copyright 2024 StyleForge css</p>
</div>
</footer>
</body>
</html>