-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 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
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Blinker:400,700|Source+Sans+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="card">
<img class="card-img" src="img/tech.jpg" alt="an iphone on a macbook with dramatic lighting" />
<!-- <div class="card-img"></div> -->
<div class="card-content">
<h1 class="card-title">7 tech tips and tricks that you need to know</h1>
<p class="card-body">Using these 7 proven tips from experts in the industry, you can save time, money and more!</p>
<div class="card-footer">
<p class="card-read-time"><span>15</span>minute <br>read</p>
<a class="card-btn" href="#">Read more</a>
</div>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>