-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (92 loc) · 4.93 KB
/
index.html
File metadata and controls
97 lines (92 loc) · 4.93 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- etiquetas meta -->
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="Santos Romero">
<!-- bootstrap -->
<link rel="stylesheet" href="css/style.css">
<!-- fuente -->
<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:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon-32x32.png" type="image/x-icon">
<!-- titulo -->
<title>Four Card Feature Section | 100 days of projects</title>
</head>
<body class="bg-light">
<main>
<section class="container my-3">
<div class="row justify-content-center">
<div class="col-12 col-sm-6">
<div class="text-center">
<h1 class="text-secondary fw-light">
Reliable, efficient delivery <br>
<span class="text-dark fw-bold">Powered by Technology</span>
</h1>
<p class="text-secondary">Our Artificial Intelligence powered tools use millions of project data
points to ensure that your project is successful</p>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-4 d-flex align-items-center mt-4">
<div class="card border-0 border-top border-success border-3 shadow p-2">
<div class="card-body">
<h2 class="card-title text-dark fs-4">Supervisor</h2>
<p class="text-secondary">Monitors activity to identity project readblocks</p>
<div class="clearfix">
<img src="images/icon-supervisor.svg" alt="supervisor icon" class="img-fluid float-end" width="50">
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mt-4">
<div class="row d-flex flex-wrap align-content-between gap-4">
<div class="col-12">
<div class="card border-0 border-top border-danger border-3 shadow p-2">
<div class="card-body">
<h2 class="card-title text-dark fs-4">Team Builder</h2>
<p class="text-secondary">Scans our talent network to create the optimal team for
your project</p>
<div class="clearfix">
<img src="images/icon-team-builder.svg" alt="team builder icon" class="img-fluid float-end" width="50">
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="card border-0 border-top border-warning border-3 shadow p-2">
<div class="card-body">
<h2 class="card-title text-dark fs-4">Karma</h2>
<p class="text-secondary">Regularly ovaluates our talent to ensure quality</p>
<div class="clearfix">
<img src="images/icon-karma.svg" alt="karma icon" class="img-fluid float-end" width="50">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-4 d-flex align-items-center mt-4">
<div class="card border-0 border-top border-primary border-3 shadow p-2">
<div class="card-body">
<h2 class="card-title text-dark fs-4">Calculator</h2>
<p class="text-secondary">Uses data from past projects to provide better delivery estimates
</p>
<div class="clearfix">
<img src="images/icon-calculator.svg" alt="calculator icon" class="img-fluid float-end" width="50">
</div>
</div>
</div>
</div>
</div>
</section>
</main>
</body>
</html>