-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
40 lines (39 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, viewport-fit=cover"
/>
<meta name="author" content="Jeferson S. Brito" />
<meta
name="theme-color"
content="#f5f6fa"
media="(prefers-color-scheme: light)"
/>
<meta
name="theme-color"
content="#1A1C1F"
media="(prefers-color-scheme: dark)"
/>
<meta
name="keywords"
content="Web Developer, UI Designer, Programmer, Fullstack Developer, Software Engineer"
/>
<meta name="color-scheme" content="dark light" />
<link rel="icon" href="/favicon.ico" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<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=Raleway:wght@500&family=Source+Sans+Pro:wght@400;600&display=swap"
rel="stylesheet"
/>
<link rel="manifest" href="/app.webmanifest" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>