-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (107 loc) · 5.29 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"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Testimonials grid section</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="true">
<link href="https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed&display=swap" rel="stylesheet">
<!-- 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>
<main class="container">
<div class="card child-1">
<div class="card-header">
<img src="./images/image-daniel.jpg" alt="Daniel" class="card__img accent-border">
<div class="header-title">
<h3 class="card__name">Daniel Clifford</h3>
<p class="card__title">Verified Graduate</p>
</div>
</div>
<div class="card-text">
<h2>I received a job offer mid-course, and the subjects I learned were current, if not more so, in the company I joined. I honestly feel I got every penny’s worth.</h2>
<p>“ I was an EMT for many years before I joined the bootcamp. I’ve been looking to make a
transition and have heard some people who had an amazing experience here. I signed up
for the free intro course and found it incredibly fun! I enrolled shortly thereafter.
The next 12 weeks was the best - and most grueling - time of my life. Since completing
the course, I’ve successfully switched careers, working as a Software Engineer at a VR startup. ”</p>
</div>
</div>
<div class="card child-2">
<div class="card-header">
<img src="./images/image-jonathan.jpg" alt="Jonathan" class="card__img">
<div class="header-title">
<h3 class="card__name">Jonathan Walters</h3>
<p class="card__title">Verified Graduate</p>
</div>
</div>
<div class="card-text">
<h2>The team was very supportive and kept me motivated</h2>
<p>“ I started as a total newbie with virtually no coding skills. I now work as a mobile engineer
for a big company. This was one of the best investments I’ve made in myself. ”</p>
</div>
</div>
<div class="card child-3">
<div class="card-header">
<img src="./images/image-jeanette.jpg" alt="Jeanette" class="card__img">
<div class="header-title">
<h3 class="card__name">Jeanette Harmon</h3>
<p class="card__title">Verified Graduate</p>
</div>
</div>
<div class="card-text">
<h2>An overall wonderful and rewarding experience</h2>
<p>“ Thank you for the wonderful experience! I now have a job I really enjoy, and make a
good living while doing something I love. ”</p>
</div>
</div>
<div class="card child-4">
<div class="card-header">
<img src="./images/image-patrick.jpg" alt="Patrick" class="card__img accent-border">
<div class="header-title">
<h3 class="card__name">Patrick Abrams</h3>
<p class="card__title">Verified Graduate</p>
</div>
</div>
<div class="card-text">
<h2>Awesome teaching support from TAs who did the bootcamp themselves. Getting guidance
from them and learning from their experiences was easy.</h2>
<p>“ Thank you for the wonderful experience! I now have a job I really enjoy, and make a
good living while doing something I love. ”</p>
</div>
</div>
<div class="card child-5">
<div class="card-header">
<img src="./images/image-kira.jpg" alt="Kira" class="card__img">
<div class="header-title">
<h3 class="card__name">Kira Whittle</h3>
<p class="card__title">Verified Graduate</p>
</div>
</div>
<div class="card-text">
<h2>Such a life-changing experience. Highly recommended!</h2>
<p>“ Before joining the bootcamp, I’ve never written a line of code. I needed some
structure from professionals who can help me learn programming step by step. I was encouraged to enroll by a
former
student of theirs who can only say wonderful things about the program. The entire curriculum and staff
did not disappoint. They were very hands-on and I never had to wait long for assistance. The agile team
project, in particular, was outstanding. It took my learning to the next level in a way that no tutorial
could ever have. In fact, I’ve often referred to it during interviews as an example of my developent
experience. It certainly helped me land a job as a full-stack developer after receiving multiple offers.
100% recommend! ”</p>
</div>
</div>
</main>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://victorydeo.wordifysites.com">Victory Deo</a>.
</div>
</body>
</html>