forked from icecream17/Stuff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarterHtml.html
52 lines (39 loc) · 1.71 KB
/
starterHtml.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
<!doctype html>
<!-- Or whatever language you use -->
<html lang="en-US">
<head>
<!-- If you're using a framework, some of these might go in your code instead. -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Used for security. Remove if you can control the web server's response headers.
You don't have control if you're using github pages.
If you're using external scripts, styles, images, or other files... (todo) -->
<meta http-equiv="content-security-policy" content="upgrade-insecure-requests; default-src 'self'">
<!-- Use this if your framework uses inline script and style tags
<meta http-equiv="content-security-policy"
content="upgrade-insecure-requests; default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline';" />
-->
<!-- Change all of these. You can delete keywords if you want -->
<title></title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="icecream17"> <!-- If you're not me, you might want to change this -->
<!-- Less important
<meta name="theme-color" content="#fff">
<meta name="color-scheme" content="normal">
<link rel="icon" href="" />
<link rel="apple-touch-icon" href="" />
<link rel="manifest" href="" />
-->
<!-- Choose one (or use a framework)
CSS and JS: big project
<link rel="stylesheet" href="css/style.css">
<script defer src="js/main.js"></script>
CSS and JS: small project
<link rel="stylesheet" href="style.css">
<script defer src="main.js"></script>
-->
</head>
<body>
</body>
</html>