-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (49 loc) · 2.26 KB
/
index.html
File metadata and controls
54 lines (49 loc) · 2.26 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
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Article Preview</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="article-card">
<div class="image">
<img src="/images/drawers.jpg" alt="Drawers image">
</div>
<div class="content">
<h2>Shift the overall look and feel by adding these wonderful touches to furniture in your home</h2>
<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 class="profile-badge">
<div class="profile-image">
<img src="/images/avatar-michelle.jpg" alt="Profile Badge">
</div>
<div class="profile-info">
<h3 class="author">Michelle Appleton</h3>
<p class="date">28 Jun 2020</p>
</div>
<div class="share-container">
<button class="share-btn">
<img src="/images/icon-share.svg" alt="Share">
</button>
<div class="share-popup">
<span>SHARE</span>
<a href="#" aria-label="Share on Facebook">
<img src="/images/icon-facebook.svg" alt="Facebook" class="share-icon">
</a>
<a href="#" aria-label="Share on Twitter">
<img src="/images/icon-twitter.svg" alt="Twitter" class="share-icon">
</a>
<a href="#" aria-label="Share on Pinterest">
<img src="/images/icon-pinterest.svg" alt="Pinterest" class="share-icon">
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>