-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (41 loc) · 2.2 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
<!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>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section class="card">
<div class="card__picture"></div>
<main class="card__content">
<h1 class="card__content__title" >Shift the overall look and feel by adding these wonderful touches to furniture in your home</h1>
<p class="card__content__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>
<!-- share botton -->
<svg class="card__content__button" 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 class="card__content__profile">
<img class="card__content__profile__picture" src="./images/avatar-michelle.jpg" alt="avatar">
<div>
<p class="card__content__profile__name">Michelle Appleton</p>
<p class="card__content__profile__date">28 Jun 2020</p>
</div>
</div>
<div class="card__content__share-icons">
<p class="card__content__share-icons__share">Share</p>
<a href="#"><img class="card__content__share-icons__icon" src="./images/icon-facebook.svg" alt="icon-facebook"></a>
<a href="#"><img class="card__content__share-icons__icon" src="./images/icon-twitter.svg" alt="icon-twitter"></a>
<a href="#"><img class="card__content__share-icons__icon" src="./images/icon-pinterest.svg" alt="icon-pinterest"></a>
</div>
</main>
</section>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.github.com/laCaelihermosa" target="_blank">lotso' coffee</a>.
</div>
<script src="./main.js"></script>
</body>
</html>