-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (72 loc) · 2.67 KB
/
index.html
File metadata and controls
72 lines (72 loc) · 2.67 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>Frontend Mentor | Article preview component</title>
<!-- Styles -->
<link type="text/css" rel="stylesheet" href="./styles/style.css" />
</head>
<body>
<!-- Wrapper -->
<div class="wrapper">
<!-- Article Preview -->
<section class="article-preview">
<!-- Image article -->
<div class="article-preview__image"></div>
<!-- Content article -->
<div class="article-preview__content">
<!-- Title -->
<div class="article-preview__content__title">
Shift the overall look and feel by adding these wonderful touches to
furniture in your home
</div>
<!-- Text -->
<div class="article-preview__content__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.
</div>
<!-- Footer -->
<div class="article-preview__content__footer">
<!-- Info -->
<div class="article-preview__content__footer__info">
<img src="./images/avatar-michelle.jpg" alt="avatar" />
<span>
<p>Michelle Appleton</p>
<p>28 Jun 2020</p>
</span>
</div>
<!-- Share button -->
<div class="article-preview__content__footer__share" id="share-button">
<img src="./images/icon-share.svg" alt="share" />
</div>
</div>
</div>
<!-- Social media -->
<div class="article-preview__dock" id="social-media">
<div class="social-media">
<span>SHARE</span>
<img src="./images/icon-facebook.svg" alt="facebook" />
<img src="./images/icon-twitter.svg" alt="twitter" />
<img src="./images/icon-pinterest.svg" alt="pinterest" />
<img src="./images/icon-share.svg" alt="share" id="return-button" />
</div>
</div>
</section>
<!-- Attribution -->
<footer class="wrapper__attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/smarqueslopez" target="_blank">smarqueslopez</a>.
</footer>
</div>
<!-- Scripts -->
<script src="./js/index.js"></script>
</body>
</html>