-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (47 loc) · 1.75 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
<!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="stylesheet" href="style.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome/5.14.0/css/all.min.css" />
</head>
<body>
<main>
<section class="container">
<div class="title">
<h2>Our Reviews</h2>
<div class="underline">
</div>
</div>
<!--article-->
<article class="review">
<div class="img-container">
<img src="./images/istockphoto-1124239071-612x612.jpg "
="person-img">
</div>
<h4 id="author">Dara Jones</h4>
<p id="job">UX Designer</p>
<p id="info">Hi, I experienced that the effort of your team
on project design is unbelievable. I appreciate your
effort with your mates. It's incredible</p>
<!--Prev and Next btn-->
<div class="button-container">
<button class="prev-btn">
<i class="fas fa-chevron-left green-color"></i>
</button>
<button class="next-btn">
<i class="fas fa-chevron-right fa-align-center green-color"></i>
</button>
</div>
</div>
<!--Random btn-->
<button class="random-btn">Surprise me</button>
</article>
</section>
</main>
<script src="main.js"></script>
</body>
</html>