-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path04c-testimonial.html
More file actions
43 lines (39 loc) · 833 Bytes
/
04c-testimonial.html
File metadata and controls
43 lines (39 loc) · 833 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Laracasts: CSS Flexbox Simplified</title>
<link rel="stylesheet" href="css/reset-2019.css">
<style>
body {
margin: 2rem;
}
.testimonial {
width: 13rem;
height: 16rem;
padding: 1rem 1.5rem;
border-radius: 0.25rem;
background: #32343c;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
p {
text-align: center;
}
span {
font-size: 0.9rem;
color: #e19a25;
}
</style>
</head>
<body>
<div class="testimonial">
<img src="img/quote.svg" alt="" width="36">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Illo, sapiente.</p>
<span>Marie Curie</span>
</div>
</body>
</html>