-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (73 loc) · 3.81 KB
/
index.html
File metadata and controls
75 lines (73 loc) · 3.81 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
73
74
75
<!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="/public/assets/images/favicon-32x32.png" />
<link rel="stylesheet" href="/public/assets/css/style.css" />
<link rel="stylesheet" href="/public/assets/css/contact.css" />
<title>Frontend Mentor | Article preview component</title>
</head>
<body>
<main class="card">
<section class="card__img">
<img src="/public/assets/images/drawers.jpg" alt="drawers" />
</section>
<section class="card__content">
<h1 class="card__title">
Shift the overall look and feel by adding these wonderful touches to furniture in your home
</h1>
<p class="card__description">
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>
<footer class="card__author">
<div class="card__author__info">
<img
src="/public/assets/images/avatar-michelle.jpg"
alt="avatar michelle"
class="card__author__img"
/>
<div class="card__author__info__details">
<h2 class="card__author__info__name">Michelle Appleton</h2>
<p class="card__author__info_time">28 Jun 2020</p>
</div>
</div>
<div class="card__share__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="15" height="13">
<path
fill="#6E8098"
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>
</div>
<div class="card__share__content">
<p>Share</p>
<img src="/public/assets/images/icon-facebook.svg" alt="icon-facebook" />
<img src="/public/assets/images/icon-twitter.svg" alt="icon-twitter" />
<img src="/public/assets/images/icon-pinterest.svg" alt="icon-pinterest" />
</div>
</footer>
</section>
</main>
<aside class="contact">
<a href="https://www.frontendmentor.io/" target="_blank" rel="noopener noreferrer">
<img src="/public/assets/images/contact/frontend-mentor-logo.png" alt="Frontend Mentor logo" />
<span>Challenge by Fronted Mentor</span>
</a>
<a href="https://www.frontendmentor.io/profile/hadodev" target="_blank" rel="noopener noreferrer">
<img src="/public/assets/images/contact/HadoDev-square-black-blue.png" alt="Hado Dev logo" />
<span>Coded by HaDo Dev</span>
</a>
<a href="https://github.com/hadodev" target="_blank" rel="noopener noreferrer">
<img src="/public/assets/images/contact/github-logo-72.png" alt="github logo" />
<span>HaDo Dev github profile</span>
</a>
<a href="mailto:hado.dev.app@gmail.com">
<img src="/public/assets/images/contact/gmail-logo-72.png" alt="mail" />
<span>HaDo Dev gmail</span>
</a>
</aside>
</body>
</html>