-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbasic_html_page.html
More file actions
25 lines (20 loc) · 972 Bytes
/
Copy pathbasic_html_page.html
File metadata and controls
25 lines (20 loc) · 972 Bytes
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
<!DOCTYPE HTML>
<!-- replace with the language of your choice! -->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="~~~~~~ (seo) add your description here! ~~~~">
<meta name="keyword" content="~~~~~~ (seo) add 5 to 8 keywords here, separated by a comma! ~~~~">
<title>basic html page</title>
<!-- assuming that yourstyle.css is in the same folder as this page. If it isn't, provide your path: src="path/yourstyle.css" -->
<link rel="stylesheet" type="text/css" href="yourstyle.css">
</head>
<body>
<!-- add content and markup here -->
<h1>add your heading here!</h1>
<p>add your body here!</p>
<!-- assuming that yourscript.js is in the same folder as this page. If it isn't, provide your path: src="path/yourscript.js" -->
<script type="text/javascript" src="yourscript.js"></script>
</body>
</html>