-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (45 loc) · 1.54 KB
/
index.html
File metadata and controls
50 lines (45 loc) · 1.54 KB
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
47
48
49
50
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO Meta Tags -->
<meta
name="description"
content="Timothy White - Brighton Software Developer with 5 years of industry experience."
>
<meta
name="keywords"
content="web developer, portfolio, typescript, javascript, full stack"
>
<meta name="author" content="Timothy White">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://timothywhite.dev/">
<meta property="og:title" content="Timothy White - Software Developer">
<meta
property="og:description"
content="Software Developer with 5 years of industry experience."
>
<meta property="og:image" content="https://timothywhite.dev/og-image.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://timothywhite.dev/">
<meta property="twitter:title" content="Timothy White - Software Developer">
<meta
property="twitter:description"
content="Software Developer with 5 years of industry experience."
>
<meta
property="twitter:image"
content="https://timothywhite.dev/og-image.jpg"
>
<!-- Favicon -->
<link rel="icon" type="image/png" href="/images/logo.png">
<title>Timothy White - Software Developer</title>
</head>
<body class="flex flex-col min-h-screen bg-gray-50">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>