-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (59 loc) · 2.34 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
<!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>
<!-- [ External CSS ] -->
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
</head>
<body>
<!-- [Main Container] -->
<main class="container">
<!-- [Artical Image] -->
<div class="postImg">
<img src="/images/drawers.jpg" alt="Post Image">
</div>
<!-- [Article Info] -->
<div class="postInfo">
<!-- [Post Title] -->
<h1 class="postTitle">Shift the overall look and feel by adding these wonderful touches to furniture in your home
</h1>
<!-- [Post Description] -->
<p class="postDesc">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>
<!-- [Author Info] -->
<div class="authorInfo">
<img src="/images/avatar-michelle.jpg" alt="Author Image" class="authorImg">
<div>
<p class="authorName">Michelle Appleton</p>
<span class="publishDate">28 Jun 2020</span>
</div>
<!-- [Post Share] -->
<div class="postShare">
<button class="shareBtn" type="button" title="share-button"><svg xmlns="http://www.w3.org/2000/svg" width="15"
height="13">
<path
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></button>
</div>
</div>
</div>
<!--[ Share Menu ]-->
<div class="shareMenu">
<span class="text">Share</span>
<!-- [FaceBook Icon] -->
<a class="icon" href="#"><img src="/images/icon-facebook.svg" alt="FaceBook Icon"></a>
<!-- [Twitter Icon] -->
<a class="icon" href="#"><img src="/images/icon-twitter.svg" alt="Twitter Icon"></a>
<!-- [Pinterest Icon] -->
<a class="icon" href="#"><img src="/images/icon-pinterest.svg" alt="Pinterest Icon"></a>
</div>
</main>
<footer class="attribution">
Coded by <a href="https://github.com/SartHak-0-Sach" target="_blank">Sarthak Sachdev</a>.
</footer>
<script src="script.js"></script>
</body>
</html>