-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 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
57
58
59
60
61
62
63
64
65
66
67
<!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">
<link href="css/style.css" rel="stylesheet" type="text/css">
<title>Frontend Mentor | Four card feature section</title>
</head>
<body>
<div class="wrapper">
<header class="header">
<span class="header__welcom-txt">Reliable, efficient delivery</span>
<h1 class="header__head-line">Powered by Technology</h1>
<p class="header__text">
Our Artificial Intelligence powered tools use millions of project data points
to ensure that your project is successful
</p>
</header>
<main class="main">
<article class="article article--supervisor">
<h2 class="article__title">Supervisor</h2>
<p class="article__text">
Monitors activity to identify project roadblocks
</p>
<img class="article__img" src="images/icon-supervisor.svg" alt="">
</article>
<article class="article article--team-builder">
<h2 class="article__title">Team Builder</h2>
<p class="article__text">
Scans our talent network to create the optimal team for your project
</p>
<img class="article__img" src="images/icon-team-builder.svg" alt="">
</article>
<article class="article article--karma">
<h2 class="article__title">Karma</h2>
<p class="article__text">
Regularly evaluates our talent to ensure quality
</p>
<img class="article__img" src="images/icon-karma.svg" alt="">
</article>
<article class="article article--calculator">
<h2 class="article__title">Calculator</h2>
<p class="article__text">
Uses data from past projects to provide better delivery estimates
</p>
<img class="article__img" src="images/icon-calculator.svg" alt="">
</article>
</main>
</div>
</body>
</html>