-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (48 loc) · 2.07 KB
/
index.html
File metadata and controls
51 lines (48 loc) · 2.07 KB
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
<!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="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@500;700&display=swap" rel="stylesheet">
<title>Frontend Mentor | Article preview component</title>
</head>
<body>
<div class="container">
<img class="large-image" src="images/drawers.jpg" alt="">
<div class="text">
<h2 class="first-text">Shift the overall look and feel by adding these wonderful
touches to furniture in your home</h2>
<p class="second-text">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>
<div class="base-end">
<img class="avatar" src="images/avatar-michelle.jpg" alt="">
<div class="michelle">
<p class="michelle-text">Michelle Appleton</p>
<p class="michelle-text-two">28 Jun 2020</p>
</div>
<div onclick="myFunction()" class="share-icon-div">
<img class="share-icon" src="images/icon-share.svg" alt="">
</div>
</div>
</div>
</div>
<div class="extra-share-div">
<div class="toggle">
<p class="centre-fit p-centre-fit">SHARE</p>
<img class="centre-fit img-centre-fit" src="images/icon-facebook.svg" alt="">
<img class="centre-fit img-centre-fit" src="images/icon-twitter.svg" alt="">
<img class="centre-fit img-centre-fit" src="images/icon-pinterest.svg" alt="">
</div>
<div class="small-box">
</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/rephidimC">Victor Adeleke Afolayan</a>.
</div>
<script src="index.js" charset="utf-8"></script>
</body>
</html>