-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>FlexCard</title>
<link rel="icon" type='image/png' href="\planet-earth.png">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous">
<link rel="stylesheet" href="public/css/style.min.css">
</head>
<body>
<div class="card">
<img src="tech.jpg" class="card-img" alt="phone">
<div class="card-content">
<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>
<div class="card-footer">
<p class="card-read-time"><span>15</span>minute</br> read</p>
<a href="#" class="card-button">read more</a>
</div>
</div>
</div>
<script src="public/js/script.js"></script>
</body>
</html>