-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (98 loc) · 3.44 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
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<meta
name="keywords"
content="Best, preview, card, article, drawers, nothing special.."
/>
<meta
name="description"
content=" 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."
/>
<title>Frontend Mentor | Article preview component</title>
<link rel="stylesheet" href="./src/style/style.css" />
</head>
<body>
<main class="main">
<div class="wrapper">
<article class="card">
<figure class="card__image-container"> </figure>
<div class="card__content">
<h1 class="card__title">
Shift the overall look and feel by adding these wonderful touches
to furniture in your home
</h1>
<p class="card__description">
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 class="card__social">
<div class="author">
<img
src="./src/assets/images/avatar-michelle.jpg"
alt="Michelle Appleton"
class="author__image"
/>
<div class="author__personal">
<strong class="author__name">Michelle Appleton</strong>
<p class="author__date">28 Jun 2020</p>
</div>
</div>
<button class="btn btn--socials" aria-label="Socials">
<img
src="./src/assets/images/icon-share.svg"
alt=""
class="btn__image"
/>
</button>
<div class="socials">
<p class="socials__title">Share</p>
<ul class="socials__list">
<li class="socials__item">
<a href="#" class="socials__link">
<img
src="./src/assets/images/icon-facebook.svg"
alt="Facebook"
class="socials__icon"
/>
</a>
</li>
<li class="socials__item">
<a href="#" class="socials__link">
<img
src="./src/assets/images/icon-twitter.svg"
alt="Twitter"
class="socials__icon"
/>
</a>
</li>
<li class="socials__item">
<a href="#" class="socials__link">
<img
src="./src/assets/images/icon-pinterest.svg"
alt="Pinterest"
class="socials__icon"
/>
</a>
</li>
</ul>
</div>
</div>
</div>
</article>
</div>
</main>
<script src="./src/js/app.js"></script>
</body>
</html>