-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (108 loc) · 3.12 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!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" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,200&display=swap"
rel="stylesheet"
/>
<!-- displays site properly based on user's device -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>Frontend Mentor | Four card feature section</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<!-- <style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style> -->
</head>
<body>
<header class="init">
<h1 class="title-1">Reliable, efficient delivery</h1>
<h1 class="title-2">Powered by Technology</h1>
<p class="sub-title">
Our Artificial Intelligence powered tools use millions of project data
points to ensure that your project is successful
</p>
</header>
<section class="container">
<article>
<div class="tile-1">
<h2 class="title-tile-1">Supervisor</h2>
<p class="tile-des-1">
Monitors activity to identify project<br />
roadblocks
</p>
<img
class="img-1"
src="../images/icon-supervisor.svg"
alt="icon-supervisor"
width="50px"
/>
</div>
</article>
<article class="container-center">
<div class="tile-2">
<h2 class="title-tile-2">Team Builder</h2>
<p class="tile-des-2">
Scans our talent network to create the <br />
optimal team for your project
</p>
<img
class="img-2"
src="../images/icon-team-builder.svg"
alt="icon-team-builder"
width="50px"
/>
</div>
<div class="tile-3">
<h2 class="title-tile-3">Karma</h2>
<p class="tile-des-3">
Regularly evaluates our talent to ensure <br />
quality
</p>
<img
class="img-3"
src="../images/icon-karma.svg"
alt="icon-karma"
width="50px"
/>
</div>
</article>
<article>
<div class="tile-4">
<h2 class="title-tile-4">Calculator</h2>
<p class="tile-des-4">
Uses data from past projects to provide <br />better delivery
estimates
</p>
<img
class="img-4"
src="../images/icon-calculator.svg"
alt="icon-calculator"
width="50px"
/>
</div>
</article>
</section>
<footer>
<p class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by <a href="#">Yennys Ollarves</a>.
</p>
</footer>
</body>
</html>