-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 1.73 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 1.73 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Starter</title>
<!-- font-awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
<!-- styles -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main>
<section class="container">
<div class="title">
<h2>our reviews</h2>
<div class="underline"></div>
</div>
<article class="review">
<div class="img-container">
<img src="./person-1.jpeg" id="person-img" alt="">
</div>
<h4 id="author">sara jones</h4>
<p id="job">ux designer</p>
<p id="info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Exercitationem beatae quaerat vel ducimus, minima iste at adipisci. Amet ad aperiam soluta consequatur quae iure odit placeat, accusamus vel, esse optio!
</p>
<!-- prev next buttons -->
<div class="button-container">
<button class="prev-btn">
<i class="fas fa-chevron-left"></i>
</button>
<button class="next-btn">
<i class="fas fa-chevron-right"></i>
</button>
</div>
<!-- random button-->
<button class="random-btn">suprise me</button>
</article>
</section>
</main>>
<!-- javascript -->
<script src="app.js"></script>
</body>
</html>