-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (65 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Layout Practice (four-card-feature)</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- HEADER -->
<header id="header">
<h1 id="top-header">Reliable, efficient delivery</h1>
<h2 id="middle-header">Powered by Technology</h2>
<p id="header-info">Our Artificial Intelligence powered tools use millions of project data points to ensure that your project is successful</p>
</header>
<!-- CARDS SECTION -->
<main>
<section class="section" id="top">
<div class="card" id="supervisor-card">
<div class="card-header">
<h2>Supervisor</h2>
<p>Monitors activity to identify project roadblocks</p>
</div>
<div class="card-image">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/504854/four-card-icon-supervisor.svg" alt="magnifying glass icon">
</div>
</div>
</section>
<section class="section" id="middle">
<div class="card" id="team-builder-card">
<div class="card-header"></div>
<h2>Team Builder</h2>
<p>Team Builder Scans our talent network to create the optimal team for your project</p>
<div class="card-image">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/504854/four-card-icon-team-builder.svg" alt="house icon">
</div>
</div>
<div class="card" id="karma-card">
<div class="card-header"></div>
<h2>Karma</h2>
<p>Karma Regularly evaluates our talent to ensure quality</p>
<div class="card-image">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/504854/four-card-icon-karma.svg" alt="lamp icon">
</div>
</div>
</section>
<section class="section" id="bottom">
<div class="card" id="calculator-card">
<div class="card-header"></div>
<h2>Calculator</h2>
<p>Calculator Uses data from past projects to provide better delivery estimates</p>
<div class="card-image">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/504854/four-card-icon-calculator.svg" alt="magnifying calculator icon">
</div>
</div>
</section>
</main>
<bottom>
<DIV id="bottom-div">
<p>In collaboration with <a target="_blank" href="https://codepen.io/SixStringsCoder">Steve Hanlon</a>. Based on this <a target="_blank" href="https://www.frontendmentor.io/challenges/four-card-feature-section-weK1eFYK"> Challenge</a>.
</p>
</DIV>
</bottom>
</body>
</html>