-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
Everything in the head is static and does not change.
Everything in the body and the body itself is loaded
dynamically and can change at any point in time.
-->
<meta charset="utf-8">
<meta name="author" content="Aliyss Snow">
<meta name="description" content="Because it surprisingly works?">
<meta name="theme-color" content="#43cd80"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title id="title">Aliyssium</title>
<link rel="canonical" media="all" href="https://github.com/Asylum-os/htmlFromJS"/>
<link rel="stylesheet" media="all" href="css/main.css"/>
<link rel="stylesheet" media="all" href="css/prism.css"/>
<noscript><meta content="no-js" http-equiv="default-style"></noscript>
<!--
script.js is a self-built module for building clean
HTML5 files without having to worry about syntax
and errors.
-->
<script defer src="js/script.js"></script>
<!--
main.js is the content which is loaded after script.js
is loaded. This also enables the Web-Designer to use
minimal code to edit the content.
-->
<script defer src="js/main.js"></script>
<!-- Makes JS Code look good. -->
<script defer src="js/prism.js"></script>
</head>
</html>