-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.55 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Four Card feature</title>
</head>
<body>
<header>
<h1>Reliable, efficient delivery<br>
<span>Powered by Technology</span>
</h1>
<p>Our Artificial Intelligence powered tools use millions of project data<br>
points to ensure that your project is successful</p>
</header>
<main>
<div class="container">
<div class="box box-cyan box-shift">
<h3>Supervisor</h3>
<p>Monitors activity to identify project roadblocks</p>
<img src="img\icon-supervisor.svg" alt="">
</div>
<div class="box box-red">
<h3>Team Builder</h3>
<p>Scans our talent network to create the optimal team for your project</p>
<img src="img\icon-team-builder.svg" alt="">
</div>
<div class="box box-orange box-shift">
<h3>Karma</h3>
<p>Regularly evaluates our talent to ensure quality </p>
<img src="img\icon-karma.svg" alt="">
</div>
<div class="box box-blue">
<h3>Calculator</h3>
<p>Uses data from past projects to provide better delivery estimates</p>
<img src="img\icon-calculator.svg" alt="">
</div>
</div>
</main>
</body>
</html>