-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
65 lines (50 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
<!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>Review carousel</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="container">
<!-- heading start -->
<div class="heading">
<h1>Our Reviews</h1>
<div class="hr"></div>
</div>
<!-- main container -->
<div class="carousel-box">
<div class="review-box review-1">
<div class="client-img">
<div class="img">
<img src="./assets/images/susan-smith.jpeg" alt="">
</div>
<div class="dubble-qoute">"</div>
</div>
<div class="client-detail">
<div class="name">Susan Smith</div>
<div class="title">WEB DEVELOPER</div>
</div>
<div class="review">
<p>I'm baby meggings twee heath goth +1. Bicycle rights tumeric charetreuse before they sold out chambray
pop-up. Shaman humblebrag pickled coloring book salvia hoodie, cold-pressed four dollar toast everyday
carry.
</p>
</div>
<div class="button-box">
<div class="prev">
<div></div>
</div>
<div class="next">
<div></div>
</div>
</div>
<div class="random-btn">Surprise Me</div>
</div>
</div>
</div>
<script src="assets/js/app.js"></script>
</body>
</html>