-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (51 loc) · 3.24 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
<!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">
<title>Responsive Features Section</title>
<link rel="stylesheet" href="style.css">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<div class="background d-flex jusitfy-content-center align-items-center">
<div class="container">
<div class="features d-flex flex-column justify-content-center align-items-center gap-4 py-5 text-center">
<div class="features-header"><!-- features-header section -->
<h2 class="h2 text-white">More than just a tool</h2>
<small class="text-white-50">Explore what else we can do for you</small>
</div>
<div class="features-body d-grid text-white">
<section class="feature-item d-flex flex-column gap-1 rounded-4 p-5 first-gradient">
<i class="feature-icon rounded-pill bi-clipboard"></i>
<strong class="feature-title">Project Management</strong>
<small class="feature-subtitle text-white-50">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Labore.</small>
<a href="#" class="text-white">Read More</a>
</section>
<section class="feature-item d-flex flex-column gap-1 rounded-4 p-5 second-gradient">
<i class="feature-icon rounded-pill bi-clipboard"></i>
<strong class="feature-title">Time Tracking</strong>
<small class="feature-subtitle text-white-50">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Labore.</small>
<a href="#" class="text-white">Read More</a>
</section>
<section class="feature-item d-flex flex-column gap-1 rounded-4 p-5 third-gradient">
<i class="feature-icon rounded-pill bi-clipboard"></i>
<strong class="feature-title">Resource Planing</strong>
<small class="feature-subtitle text-white-50">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Labore.</small>
<a href="#" class="text-white">Read More</a>
</section>
<section class="feature-item d-flex flex-column gap-1 rounded-4 p-5 fourth-gradient">
<i class="feature-icon rounded-pill bi-clipboard"></i>
<strong class="feature-title">Invoicing</strong>
<small class="feature-subtitle text-white-50">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Labore.</small>
<a href="#" class="text-white">Read More</a>
</section>
</div>
</div>
</div>
</div>
</body>
</html>