-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
97 lines (82 loc) · 2.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="
width=device-width, initial-scale=1.00;
height=device-height, initial-scale=1.00;
"
/>
<meta name="author" content="Lukas Batema, BatemaDevelopment" />
<meta name="description" content="The official site of BatemaDevelopment" />
<meta
name="keywords"
content="BatemaDevelopment, Programming, Coding, HTML5, CSS3, HTML, CSS"
/>
<link rel="stylesheet" type="text/css" href="src/css/theme.css" />
<link
rel="icon"
type="image/png"
href="/share/images/x-icon/dark-shortcut-icon.png"
/>
<title>BatemaDevelopment</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NHK9VR2VD5">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NHK9VR2VD5');
</script>
</head>
<body>
<header>
<div class="flex">
<h1>BatemaDevelopment</h1>
<nav id="navbar">
<a href="javascript:void(0);"> Home </a>
<a href="pages/other/store.html"> Store </a>
<a href="pages/other/about.html"> About </a>
<a href="pages/other/contact.html"> Contact </a>
<a href="pages/other/projects.html"> Projects </a>
<a href="pages/accounts/login.html"> Login </a>
</nav>
<img
alt="BatemaDevelopment Emblem"
src="/share/images/headers/batemadevelopment_icon.png"
/>
</div>
</header>
<main>
<div class="flex">
<h2>Welcome</h2>
<p>
Welcome to BatemaDevelopment, thank you for stopping by, please have a
look around while you are here!
</p>
</div>
</main>
<footer>
<div class="flex">
<p>©2023 BatemaDevelopment</p>
<a href="agreements/tos.html"> Terms of Service </a>
<a href="agreements/privacypolicy.html"> Privacy Policy </a>
</div>
</footer>
<script type="module" src="src/js/index.js"></script>
<script
async
defer
src="https://api.batemadevelopment.com/latest.js"
></script>
<noscript
><img
src="https://api.batemadevelopment.com/noscript.gif"
alt=""
referrerpolicy="no-referrer-when-downgrade"
/></noscript>
</body>
</html>