-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 958 Bytes
/
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
<!-- Basic Template -->
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My webpage</title>
<meta name="author" content="MazontheMoon">
<meta name="description" content="My basic HTML template">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="cssFileName.css">
</head>
<!----------------------------------------------
My Template
------------------------------------------------
Finding your way around
================================================
1. Nav menu...
--------------------------------------------------->
<body>
<!--Header-->
<header id="top">
<h1></h1>
</header>
<!--nav menu-->
<nav></nav>
<!--main content for page-->
<main></main>
<!--footer-->
<footer>
</footer>
</body>
</html>