forked from Kimutai-FK/HTML-CSS-for-begginers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlife.html
68 lines (68 loc) · 2.98 KB
/
life.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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Document</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="CSS/life.css">
</head>
<body>
<div class="transform">
<div class="tittle">
<h1>Transform your life <br>
through education</h1>
</div>
<div class="testimonials">
<div class="testimonial1 text">
<h2>“Love mathematics because of
Besnik Academy”</h2>
<p id="narration">"The curriculum was directly targeted toward applied
techniques with high profile projects – real datasets
with industry partners. It helped me achieve my career
transition goal."
</p>
<div class="reviewer details">
<div class="img">
<img src="images/dog.jpg" alt="">
</div>
<div class="name">
<p id="name">Wilson Thai</p>
<p id="location">Ontario, Canada</p>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</div>
</div>
</div>
<div class="testimonial2 text">
<h2>"There is so much to see and do all
over world”</h2>
<p id="narration">"The curriculum was directly targeted toward applied
techniques with high profile projects – real datasets with
industry partners. It helped me achieve my career
transition goal."
</p>
<div class="reviewer details">
<div class="img">
<img src="images/dog.jpg" alt="">
</div>
<div class="name">
<p id="name">Milena Belmar</p>
<p id="location">Argentina</p>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>