-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (53 loc) · 1.84 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
<!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">
<link rel="stylesheet" href="./css/main.css">
<title>Frontend Mentor | Article preview component</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(123, 66%, 42%); text-decoration: none; }
</style>
</head>
<body>
<main>
<div id="left-wrap">
<img src="./images/drawers.jpg" alt="">
</div>
<div id="right-wrap">
<article>
<h1>Shift the overall look and feel by adding these wonderful
touches to furniture in your home
</h1>
<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>
</article>
<div id="bottom">
<div id="profile">
<img src="./images/avatar-michelle.jpg" alt="">
<p id="name">Michelle Appleton</p>
<p id="date">28 Jun 2020</p>
</div>
<button type="button" id="share">
<img src="./images/icon-share.svg" alt="">
</button>
</div>
</div>
<div id="sm-nav">
<p>share</p>
<a href="#"><img src="./images/icon-facebook.svg" alt=""></a>
<a href="#"><img src="./images/icon-twitter.svg" alt=""></a>
<a href="#"><img src="./images/icon-pinterest.svg" alt=""></a>
</div>
</main>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Albert Kombol</a>.
</div>
<script src="./js/main.js"></script>
</body>
</html>