-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (31 loc) · 1.55 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">
<head>
<meta charset="utf-8" />
<!-- * [Optional] If there is Anything to prefetch, uncomment following line and add URL. Read More about it here: https://developer.mozilla.org/en-US/docs/Web/Performance/dns-prefetch -->
<!-- <link rel="dns-prefetch" href="https://YOUR_URL.com" /> -->
<!-- * [Optional] preconnect keyword, uncomment following line and add URL. Read More about it here: https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types/preconnect-->
<!-- <link rel="preconnect" href="https://YOUR_URL.com"> -->
<meta name="viewport" content="width=device-width" />
<!-- * Title of your website -->
<title>Simple Website Template</title>
<!-- * Description of your website -->
<meta
name="description"
content="Template for Simple Web Projects, Consists
of HTML, CSS & JavaScript"
/>
<!-- TODO: [Optional] You Can Add Twitter Card, Open Graph Meta Tags for better SEO, Better Online Presence of your website on different platform like Twitter, Facebook, etc.
* Read About Open Graph here: https://ahrefs.com/blog/open-graph-meta-tags/
* Read About Twitter Cards here: https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/abouts-cards
-->
<!-- * Favicon of your website -->
<link rel="icon" href="./static/favicon.ico" />
<!-- CSS File -->
<link href="./style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- JavaScript File -->
<script src="./script.js"></script>
</body>
</html>