-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 2.29 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
<!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="./dist/css/main.css">
<link rel="icon" type="image/png" sizes="32x32" href="./dist/images/favicon-32x32.png">
<title>Frontend Mentor | Four card feature section</title>
</head>
<body>
<header class="header">
<h1 class="header__title">
<span class="header__title--light">Reliable, efficient delivery</span>
<span class="header__title--bold">Powered by Technology</span>
</h1>
<p class="header__paragraph">
Our Artificial intelligence powered tools use millions of project data
points to ensure that your project is successful.
</p>
</header>
<main class="cards">
<div class="card card--cyan">
<h2 class="card__title">Supervisor</h2>
<p class="card__paragraph">Monitor activity to identify project readblocks</p>
<img src="./dist/images/icon-supervisor.svg" alt="supervisor icon" class="card__img">
</div>
<div class="card card--red">
<h2 class="card__title">Team builder</h2>
<p class="card__paragraph">Scans our talent network to create the optimal team for your project.</p>
<img src="./dist/images/icon-team-builder.svg" alt="team builder icon" class="card__img">
</div>
<div class="card card--orange">
<h2 class="card__title">karma</h2>
<p class="card__paragraph">Regularaly evaluates our talent to ensure quality</p>
<img src="./dist/images/icon-karma.svg" alt="karma-icon" class="card__img">
</div>
<div class="card card--blue">
<h2 class="card__title">Calculator</h2>
<p class="card__paragraph">Uses data from past projects to provide better delivery estimates</p>
<img src="./dist/images/icon-calculator.svg" alt="Calculator-icon" class="card__img">
</div>
</main>
<footer>
<p>
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="">hozayves</a>
</p>
</footer>
</body>
</html>