-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·50 lines (41 loc) · 1.74 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
<!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">
<title>Frontend Mentor | Four card feature section</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="header">
<p class="p1">Reliable, efficient delivery</p>
<p class="p2">Powered by Technology</p>
<p class="p3">Out Artificial intelligence powered tools use millions of project data points to ensure that your project is successful</p>
</div>
<div class="card" id="card1">
<h1>Team Builder</h1>
<p class="p4">Scans our talent network to create the optimal team for your project</p>
<img src="images/icon-team-builder.svg" alt="team builder" class="image">
</div>
<div class="card" id="card2">
<h1>Karma</h1>
<p class="p4">Regularly evaluate our talent to ensure quality</p>
<img src="images/icon-karma.svg" alt="karma" class="image">
</div>
<div class="card" id="card3">
<h1>Calculator</h1>
<p class="p4">Uses past projects to provide delivery estimates</p>
<img src="images/icon-calculator.svg" alt="calculator" class="image">
</div>
<div class="card" id="card4">
<h1>Supervisor</h1>
<p class="p4">Monitors activity to identify project roadblocks</p>
<img src="images/icon-supervisor.svg" alt="supervisor" class="image">
</div>
</div>
</body>
</html>