-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (92 loc) · 3.92 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Four card feature section</title>
<!-- CSS Stylesheets -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap" rel="stylesheet">
<!-- ICONS | FONTS AWESOME -->
<!-- Bootstrap Scripts -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF" crossorigin="anonymous"></script>
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="row first-row">
<h3 class="head-1">Reliable, efficient delivery</h3>
<h3 class="head-2">Powered by Technology</h3>
<p>Our Artificial Intelligence powered tools use millions of project data points to ensure that your project is successful</p>
</div>
<div class="row sec-row">
<div class="col col-md-3 col-sm-12 Box-1">
<div class="main-box">
<div class="Box-info">
<h5>Supervisor</h5>
<p>Monitors activity to identify project roadblocks</p>
</div>
<div class="Box-img">
<img src="images/icon-supervisor.svg" alt="Supervisor Icon">
</div>
</div>
</div>
<div class="col col-md-3 col-sm-12 mid-column">
<div class="col col-sm-12 Box-2">
<div class="main-box">
<div class="Box-info">
<h5>Team Builder</h5>
<p>Scans our talent network to create the optimal team for your project</p>
</div>
<div class="Box-img">
<img src="images/icon-team-builder.svg" alt="Team Builder Icon">
</div>
</div>
</div>
<div class="col col-sm-12 Box-3">
<div class="main-box">
<div class="Box-info">
<h5>Karma</h5>
<p>Regularly evaluates our talent to ensure quality</p>
</div>
<div class="Box-img">
<img src="images/icon-karma.svg" alt="Karma Icon">
</div>
</div>
</div>
</div>
<div class="col col-md-3 col-sm-12 Box-4">
<div class="main-box">
<div class="Box-info">
<h5>Calculator</h5>
<p>Uses data from past projects to provide better delivery estimates</p>
</div>
<div class="Box-img">
<img src="images/icon-calculator.svg" alt="Calculator Icon">
</div>
</div>
</div>
</div>
</div>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Harshit Soni</a>.
</p>
</footer>
</body>
</html>