-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.19 KB
/
Copy pathindex.html
File metadata and controls
34 lines (33 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Business Blog Card</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="card">
<div class="card__hero">
<!-- <img class="card__hero__image" src="./images/hero-image-business-card.png" alt="" /> -->
<img class="card__hero__overlay" src="./images/white-overlay.svg" alt="">
</div>
<div class="card__content">
<h2 class="card__headline">Perfect solution for small business</h2>
<p class="card__text">
Small businesses need to generate leads to grow.
</br>You can use tools
like Ringy.
</p>
<span class="card__line"></span>
<div class="card__author">
<img class="card__author__avatar" src="./images/avatar-image-business-card.png" alt="" />
<div class="card__author__info">
<span class="card__author__name">Amy Burgess</span>
<span class="card__author__role">Customer Manger, Solution Oy</span>
</div>
</div>
</div>
</div>
</body>
</html>