This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
80 lines (65 loc) · 2.45 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Article preview component - Frontend Mentor">
<meta name="keywords" content="Article preview component, Frontend Mentor">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="stylesheet" href="styles.css">
<title>Article preview component</title>
</head>
<body>
<main>
<!-- Article Container -->
<article class="article-container">
<!-- Article IMG -->
<section class="image-container">
<div class="article-img"></div>
</section>
<!-- Info Container -->
<section class="info-container">
<!-- Title Section -->
<section class="title-section">
<h1>Shift the overall look and feel by adding these wonderful
touches to furniture in your home</h1>
</section>
<!-- Text Section -->
<section class="text-section">
<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>
<!-- Social Section -->
<section class="social-section">
<!-- Author Section -->
<div class="author-section">
<div class="author-details">
<div class="author-img"></div>
<div class="author-info">
<p class="author-name"> Michelle Appleton</p>
<p class="date"> 28 Jun 2020</p>
</div>
</div>
<div class="share-btn"></div>
</div>
</section>
<!-- Share Section -->
<div class="share-section">
<div class="social-icons">
<div><a href="/" class="share-link">Share</a></div>
<div class="facebook"></div>
<div class="twitter"></div>
<div class="pinterest"></div>
</div>
<div class="hidden-share-btn"></div>
</div>
</section>
</article>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="app.js"></script>
</body>
</html>