-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (20 loc) · 1000 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Flexbox Card Demo</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Blinker:400,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700&display=swap" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="card">
<img class="card-image" src="images/tech.jpg" alt="picture of iphone and airpods on a Macbook">
<h2 class="card-title">7 tech tips and tricks that you need to know</h2>
<p class="card-body">Using these 7 proven tips from experts in the industry, you can save time, money and more!</p>
<p class="card-read-time"><span>15</span> minute<br>read</p>
<a href="#" class="card-button">read more</a>
</div>
</body>
</html>