-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (47 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<title>Frontend Mentor | Article preview component</title>
</head>
<body>
<main>
<div class="image-container">
<img src="./images/drawers.jpg" alt="flower-pot on a drawer">
</div>
<div class="text">
<section class="text-up">
<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>
</section>
<div class="text-down">
<div class="profile">
<img src="./images/avatar-michelle.jpg" alt="a portrait of Michelle">
<section class="profile-desc">
<h2>Michelle Appleton</h2>
<p>28 Jun 2020</p>
</section>
</div>
<div class="share">
<img src="./images/icon-share.svg" alt="share icon" id="share-icon">
</div>
<div class="share-links">
<span>Share</span>
<a href="#" aria-label="facebook page"><img src="./images/icon-facebook.svg" alt="facebook icon"></a>
<a href="#" aria-label="twitter page"><img src="./images/icon-twitter.svg" alt="twitter icon"></a>
<a href="#" aria-label="pinterest page"><img src="./images/icon-pinterest.svg" alt="pinterest icon"></a>
</div>
</div>
</div>
</main>
<footer>
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.facebook.com/drougnov.bd.9">Biplob Barua Rocky</a>.
</footer>
<script src="app.js"></script>
</body>
</html>