-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 2.28 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="container">
<div class="title">
Testimonials
</div>
<div class="cards">
<!-- CARD 1-->
<div class="card">
<div class="card-text">
<span class="quotes">“</span>
<span class="cb">Some days a motivational quote can provide a quick pick-me-up for employees and even management. They can be a breadth of fresh air when it comes to a drab afternoon.</span>
<span class="quotes" style="text-align: end;">”</span>
<span class="ca">Patrick Bell CEO at Company</span>
</div>
<div class="card-frame"></div>
</div>
<!-- CARD 2-->
<div class="card">
<div class="card-text">
<span class="quotes">“</span>
<span class="cb">If you find yourself doing the same routine day after day, never remembering what you did the day before, having nothing to look forward to, living your life - but never enjoying it or anything.</span>
<span class="quotes" style="text-align: end;">”</span>
<span class="ca">Zachary Cooper Project Manager at Company</span>
</div>
<div class="card-frame"></div>
</div>
<!-- CARD 3-->
<div class="card">
<div class="card-text">
<span class="quotes">“</span>
<span class="cb">Large businesses require a lot of IT infrastructure and a adepartment to look after it. Small businesses often can't afford to have that sort of internal support in place. Yet they need fully operational IT systems in order for.</span>
<span class="quotes" style="text-align: end;">”</span>
<span class="ca">Caleb Swanson Managing Partner at Company</span>
</div>
<div class="card-frame"></div>
</div>
</div>
</div>
</body>
</html>