-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
78 lines (68 loc) · 2.39 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Four Card Feature Section</title>
</head>
<body>
<main class="container">
<h1 id="title">Reliable, efficient delivery</h1>
<h2 id="subtitle">Powered by Technology</h2>
<p id="desc">
Our Artificial Intelligence powered tools use millions of project data points to ensure that your project is successful
</p>
<div class="card-container">
<div class="card-column">
<div class="card" id="calculator">
<div class="card-header">
<h3>Supervisor</h3>
<p>Monitors activity to identify project roadblocks</p>
</div>
<div class="card-img">
<img src="./public/icon-supervisor.svg" alt=""/>
</div>
</div>
</div>
<div class="card-column">
<div class="card" id="team-builder">
<div class="card-header">
<h3>Team Builder</h3>
<p>Scans our talent network to create the optimal team for your project</p>
</div>
<div class="card-img">
<img src="./public/icon-team-builder.svg" alt=""/>
</div>
</div>
<div class="card" id="karma">
<div class="card-header">
<h3>Karma</h3>
<p>Regularly evaluates our talent to ensure quality</p>
</div>
<div class="card-img">
<img src="./public/icon-karma.svg" alt=""/>
</div>
</div>
</div>
<div class="card-column">
<div class="card" id="calculator">
<div class="card-header">
<h3>Calculator</h3>
<p>Uses data from past projects to provide better delivery estimates</p>
</div>
<div class="card-img">
<img src="./public/icon-calculator.svg" alt=""/>
</div>
</div>
</div>
</div>
</main>
<footer>
Challenge by <a href="https://www.frontendmentor.io/challenges/four-card-feature-section-weK1eFYK" target="_blank" rel="noopener">Frontend Mentor</a>.
Coded by <a href="https://github.com/gdbecker/FrontendMentorProjects/tree/main/four-card-feature-section"
target="_blank" rel="noopener">Garrett Becker</a>.
</footer>
</body>
</html>