-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 2.06 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
<!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="reset.css">
<link rel="stylesheet" href="main.css">
<title>Four Card Feature</title>
<link rel="shortcut icon" type="image/png" href="./images/favicon-32x32.png" />
</head>
<body>
<main>
<article class="titleBlock">
<h1>Reliable, efficient delivery</h1>
<h2>Powered by Technology</h2>
<h3>Our Artificial Intelligence powered tools use millions of project data points to ensure that your
project is
successful</h3>
</article>
<div class="benefitWrapper">
<article class="benefitsBlocks supervisor">
<h4>Supervisor</h4>
<p>Monitors activity to identify project roadblocks</p>
<div class="icon">
<img src="./images/icon-supervisor.svg" alt="">
</div>
</article>
<article class="benefitsBlocks team">
<h4>Team Builder</h4>
<p>Scans our talent network to create the optimal team for your project</p>
<div class="icon">
<img src="./images/icon-team-builder.svg" alt="">
</div>
</article>
<article class="benefitsBlocks karma">
<h4>Karma</h4>
<p>Regularly evaluates our talent to ensure quality</p>
<div class="icon">
<img src="./images/icon-karma.svg" alt="">
</div>
</article>
<article class="benefitsBlocks calculator">
<h4>Calculator</h4>
<p>Uses data from past projects to provide better delivery estimates</p>
<div class="icon">
<img src="./images/icon-calculator.svg" alt="">
</div>
</article>
</div>
</main>
</body>
</html>