-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (51 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Frontend Mentor | Four card feature section</title>
</head>
<body>
<main class="main-content">
<hgroup class="heading-group">
<h2 class="heading-group__first-heading">Reliable, efficient delivery</h2>
<h2>Powered by Technology</h2>
<p class="heading-group__paragraph">Our Artificial Intelligence powered tools use millions of project data points
to ensure that your project is successful</p>
</hgroup>
<div class="card-grid">
<div class="card-grid__card card-grid__card--cyan">
<h3 class="card-grid__headings">Supervisor</h3>
<p class="card-grid__paragraphs">Monitors activity to identify project roadblocks</p>
<img class="card-grid__image" src="images/icon-supervisor.svg" alt="magnifying glass icon" />
</div>
<div class="card-grid__card card-grid__card--red">
<h3 class="card-grid__headings">Team Builder</h3>
<p class="card-grid__paragraphs">Scans our talent network to create the optimal team for your project</p>
<img class="card-grid__image" src="images/icon-team-builder.svg" alt="browser with home icon" />
</div>
<div class="card-grid__card card-grid__card--orange">
<h3 class="card-grid__headings">Karma</h3>
<p class="card-grid__paragraphs">Regularly evaluates our talent to ensure quality</p>
<img class="card-grid__image" src="images/icon-karma.svg" alt="lightbulb icon" />
</div>
<div class="card-grid__card card-grid__card--blue">
<h3 class="card-grid__headings">Calculator</h3>
<p class="card-grid__paragraphs">Uses data from past projects to provide better delivery estimates</p>
<img class="card-grid__image" src="images/icon-calculator.svg" alt="desktop screen icon" />
</div>
</div>
</main>
<footer class="footer">
<p class="footer__attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.linkedin.com/in/aldrinseanpereira/">Aldrin Sean Pereira</a>.
</p>
</footer>
</body>
</html>