-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 2.48 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
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&family=Rubik&display=swap"
rel="stylesheet" />
<title>px2rem - Minimal pixel to rem converter</title>
<meta name="robots" content="follow, index" />
<link rel="canonical" href="https://px2rem.evanspj.com/" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/site.webmanifest">
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#000000">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<meta
content="A simple pixel to rem converter with a minimal design. Allows you to find a pixel or rem value based off a base size value. Easy real-time conversion."
name="description" />
<meta property="og:url" content="https://px2rem.evanspj.com/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="px2rem" />
<meta property="og:description"
content="A simple pixel to rem converter with a minimal design. Allows you to find a pixel or rem value based off a base size value. Easy real-time conversion." />
<meta property="og:title" content="px2rem - Minimal pixel to rem converter" />
<meta property="og:image" content="https://px2rem.evanspj.com/px2rem-share-image.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@_evanspj" />
<meta name="twitter:title" content="px2rem - Minimal pixel to rem converter" />
<meta name="twitter:description"
content="A simple pixel to rem converter with a minimal design. Allows you to find a pixel or rem value based off a base size value. Easy real-time conversion." />
<meta name="twitter:image" content="https://px2rem.evanspj.com/px2rem-share-image.png" />
<!-- Fathom - beautiful, simple website analytics -->
<script src="https://cdn.usefathom.com/script.js" data-site="CUASCIQR" data-include-domains="px2rem.evanspj.com"
data-excluded-domains="localhost" defer></script>
<!-- / Fathom -->
</head>
<body class="antialiased">
<div id="app"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>