-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreview.html
36 lines (35 loc) · 1.31 KB
/
review.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style1.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&family=Ubuntu&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Review Page</title>
</head>
<body>
<section class="banner">
<!-- Title section -->
<section class="title">
<h1>Client Reviews</h1>
</section>
<!-- Review Section -->
<section class="review">
<div><img src="ladyy.jpg"></div>
<h2>Sarah Jones</h2>
<h3>UI/UX Designer</h3>
<p>"When I started my course at Dynamic Tech school, I had little or no knowledge about UI/UX design. The instructors drilled me with the best information and improved my skillsets. I learnt the fundamentals of User interface and experience. Now, I know how to use Figma, photoshop,and other tools to enhance my design skills. All thanks to Dynamic Tutors."</p>
<!-- prev next buttons -->
<div class="butns">
<div>
<i class="fa fa-chevron-circle-left fa-2x"></i>
</div>
<div>
<i class="fa fa-chevron-circle-right fa-2x"></i>
</div>
</div>
</section>
</body>
<script type="text/javascript" src="script.js"></script>
</html>