-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (72 loc) · 2.54 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Article preview component</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css"
integrity="sha512-BnbUDfEUfV0Slx6TunuB042k9tuKe3xrD6q4mg5Ed72LTgzDIcLPxg6yI2gcMFRyomt+yJJxE+zJwNmxki6/RA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Card Wrapper Start -->
<div class="card-wrapper">
<!-- Card Start -->
<div class="card">
<!-- Card Image Start -->
<div class="card-image">
<img src="images/drawers.jpg" alt="photo">
</div>
<!-- Card Image End -->
<!-- Card Description Start -->
<div class="card-description">
<div class="card-text">
<h3>
Shift the overall look and feel by adding these wonderful
touches to furniture in your home
</h3>
<p>Ever been in a room and felt like something was missing? Perhaps
it felt slightly bare and uninviting. I’ve got some simple tips
to help you make any room feel complete.</p>
</div>
<!-- Client Wrapper Start -->
<div class="client-wrapper">
<div class="client">
<div class="client-image">
<img src="images/avatar-michelle.jpg" alt="photo">
</div>
<div class="client-info">
<h5>Michelle Appleton</h5>
<span>28 Jun 2020</span>
</div>
</div>
<div class="share">
<button><i class="fas fa-share"></i></button>
</div>
<!-- Social Media Panel Start -->
<div class="share-social-media">
<div class="social-media-inner">
<span>SHARE</span>
<i class="fab fa-facebook-square"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-pinterest"></i>
</div>
</div>
<!-- Social Media Panel End -->
</div>
<!-- Client Wrapper End -->
</div>
<!-- Card Description End -->
</div>
<!-- Card End -->
</div>
<!-- Card Wrapper End -->
<!-- JavaScript -->
<script src="js/main.js"></script>
</body>
</html>