-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
58 lines (51 loc) · 1.86 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
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Article Preview Component</title>
</head>
<body>
<main class="container">
<div class="card">
<div class="first">
<img src="./public/drawers.jpg"/>
</div>
<div class="second">
<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>
<div class="row">
<div class="author">
<img src="./public/avatar-michelle.jpg" alt="">
<div class="author-details">
<h3>Michelle Appleton</h3>
<p>28 Jun 2020</p>
</div>
</div>
<button class="btn-card">
<i class="fa-solid fa-share"></i>
</button>
</div>
</div>
<div class="links hide">
<p>SHARE</p>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-pinterest"></i>
</div>
</div>
<script src="script.js"></script>
</main>
<footer>
Challenge by <a href="https://www.frontendmentor.io/challenges/article-preview-component-dYBN_pYFT" target="_blank" rel="noopener">Frontend Mentor</a>.
Coded by <a href="https://github.com/gdbecker/FrontendMentorProjects/tree/main/article-preview-component"
target="_blank" rel="noopener">Garrett Becker</a>.
</footer>
</body>
</html>