This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (62 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Four Card Section - Frontend Mentor">
<meta name="keywords" content="Four Card Section, Frontend Mentor">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<title>Four Card Section</title>
</head>
<body>
<main>
<!-- Feature Header -->
<header>
<h1><span>Reliable, efficient delivery</span><br>Powered by Technology</h1>
<p>Our Artificial intelligence powered tools use millions of project data points to
ensure that your
project is succesful</p>
</header>
<section class="feature-section">
<section class="feature-cards">
<!-- Card One -->
<section class="card-one">
<section class="card-info">
<h2>Supervisor</h2>
<p>Monitors activity to identify project roadblocks</p>
</section>
<img class="icon" src="./images/icon-supervisor.svg" alt="" aria-hidden="true" />
</section>
<section class="grid-center-container">
<!-- Card Two -->
<section class="card-two">
<section class="card-info">
<h2>Team Builder</h2>
<p>Scans our talent network to create the optimal team for your project</p>
</section>
<img class="icon" src="./images/icon-team-builder.svg" alt="" aria-hidden="true" />
</section>
<!-- Card Three -->
<section class="card-three">
<section class="card-info">
<h2>Karma</h2>
<p>Regularly evaluates our talent to ensure quality</p>
</section>
<img class="icon" src="./images/icon-karma.svg" alt="" aria-hidden="true" />
</section>
</section>
<!-- Card Four -->
<section class="card-four">
<section class="card-info">
<h2>Calculator</h2>
<p>Uses data from post projects to provide better delivery estimates</p>
</section>
<img class="icon" src="./images/icon-calculator.svg" alt="" aria-hidden="true" />
</section>
</section>
</section>
</main>
</body>
</html>