-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (32 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>DollarPerHour Calculator | Convert Time into Money ⏱️➡️💸</title>
<!-- Meta Tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="A simple calculator to convert time into money 🕰️➡️💸">
<meta name="keywords" content="Time Money Converter, Dollar Per Hour Calculator">
<meta name="author" content="Zack Plauché">
<!-- Open Graph Protocoal Meta Tags-->
<meta property="og:title" content="Dollar Per Hour Calculator" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.dollarperhourcalculator.com" />
<meta property="og:image" content="/example.png" />
<!-- Favicon -->
<link rel="shortcut icon" href="/icons/dph-logo-dark-32x32.png" type="image/x-icon">
<!-- Apple & Android Logo -->
<link rel="apple-touch-icon" sizes="128x128" href="/icons/dph-logo-dark-128x128.png">
<link rel="icon" sizes="192x192" href="/icons/dph-logo-dark-192x192.png">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@100;300;400&display=swap" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>