-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 2.17 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 2.17 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
52
53
<!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@200;300;400;500;700&display=swap" rel="stylesheet">
<title>Frontend Mentor | Article preview component</title>
</head>
<body>
<main>
<header class="image-container">
</header>
<section class="main-container">
<article id="intro">
<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>
<footer id="contact" class="footnote">
<img class="avatar" src="images/avatar-michelle.jpg" alt="">
<article>
<p><strong>Michelle Appleton</strong></p>
<p>28 Jun 2020</p>
</article>
<button id="share-button" class="share-button"><img src="./images/icon-share.svg" alt="Share"></button>
</footer>
<footer id="share-container" class="footnote hidden">
<p>Share</p>
<a href="https://www.google.com"><img src="./images/icon-facebook.svg" alt="Share on facebook"></a>
<a href="https://www.google.com"><img src="./images/icon-twitter.svg" alt="Share on twitter"></a>
<a href="https://www.google.com"><img src="./images/icon-pinterest.svg" alt="Share on pinterest"></a>
<button id="unshare-button" class="share-button"><img src="./images/icon-share-active.svg" alt=""></button>
<div id="arrow" class="hidden">
</div>
</footer>
</section>
</main>
<footer class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Dombovari Peter</a>.
</footer>
<script src="script.js"></script>
</body>
</html>