-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 2.14 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="furniture-article.css" />
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<main>
<section class="image__section">
<img
src="./images/drawers-img.png"
alt="drawers"
class="mobile-drawers-img"
/>
<img
src="./images/desktop-image.png"
alt="drawers"
class="desktop-drawers-img"
/>
</section>
<div class="article">
<section class="article__section">
<h1 class="article__header">
Shift the overall look and feel by adding these wonderful touches to
furniture in your home
</h1>
<p class="article__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.
</p>
</section>
<section class="author">
<div class="author__items">
<img src="./images/michelle-avatar.svg" alt="michelle-avatar" />
<div class="author__details">
<p class="author__details-name">Michelle Appleton</p>
<p class="author__details-postdate">28 June 2020</p>
</div>
</div>
<img
src="./images/light-oval.png"
alt="share-arrow"
class="share-arrow"
id="share-button"
/>
<dialog class="share-options" id="share-options">
<div class="share-options__container">
<p>Share</p>
<div class="social-media-icons">
<img src="./images/icon-facebook.svg" alt="facebook-icon" />
<img src="./images/icon-twitter.svg" alt="twitter-icon" />
<img src="./images/icon-pinterest.svg" alt="pinterest-icon" />
</div>
</div>
<div class="triangle"></div>
</dialog>
</section>
</div>
</main>
</body>
<script src="furniture-article.js"></script>