-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge.html
54 lines (54 loc) · 2.07 KB
/
challenge.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Article preview component</title>
<link rel="stylesheet" href="index.css" />
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div class="drawer">
<img class="drawer-pic" src="./images/drawers.jpg" />
</div>
<div class= "wording">
<div class="heading">Shift the overall look and feel by adding these wonderful touches to
furniture in your home
</div>
<div class='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.
</div>
<div>
<img class="person-pic" src="./images/avatar-michelle.jpg" />
</div>
<div class="circle">
<svg class="share" xmlns="http://www.w3.org/2000/svg" width="15" height="13"><path fill="#6E8098" d="M15 6.495L8.766.014V3.88H7.441C3.33 3.88 0 7.039 0 10.936v2.049l.589-.612C2.59 10.294 5.422 9.11 8.39 9.11h.375v3.867L15 6.495z"/></svg>
</div>
<div class="name">Michelle Appleton
</div>
<div class="date">28 Jun 2020
</div>
</div>
<div class="popup">
<div class="popupAndTriangle">
<div class="popupIcons">
<div class="shareFunction">SHARE</div>
<div>
<img class="facebook" src="./images/icon-facebook.svg"/>
</div>
<div>
<img class="twitter" src="./images/icon-twitter.svg"/>
</div>
<div>
<img class="pinterest" src="./images/icon-pinterest.svg"/>
</div>
</div>
<div class="triangle"></div>
</div>
</div>
</div>
<script src="index.js" charset="utf-8></script>
</body>
</html>