-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
67 lines (55 loc) · 2.03 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
66
67
<!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>Reviews</title>
<!-- Styles -->
<link rel="stylesheet" href="styles.css">
<!-- Icons -->
<script src="https://kit.fontawesome.com/af06c6c1e1.js" crossorigin="anonymous"></script>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Pattaya&family=Righteous&family=Work+Sans:wght@300&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
</head>
<body>
<main>
<!-- Title -->
<h1 id="title">Our reviews</h1>
<div class="underline"></div>
<!-- Review card -->
<section id="reviews">
<div id="reviews-presentation">
<!-- Name -->
<h2 id="name">Haley Burrell</h2>
<!-- Image -->
<div id="div-img">
<img src="retrato-1.jpg" alt="Portrait of a woman smiling at camera" id="image">
</div>
<!-- Job -->
<p id="job">Lawyer</p>
</div>
<!-- Opinion -->
<article id="opinion">
<p>Best Portal for Files, Billing and Communication with clients.</p>
</article>
<!-- Buttons -->
<div class="buttons">
<button type="button" class="btn prev">
<i class="fas fa-angle-left"></i>
</button>
<button type="button" class="btn next">
<i class="fas fa-angle-right"></i>
</button>
</div>
<!-- Random button -->
<button id="random-btn" class="btn" type="button">Surprise me!</button>
</section>
</main>
<script src="index.js"></script>
</body>
</html>