forked from wics-uw/learn-to-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
33 lines (29 loc) · 751 Bytes
/
template.html
File metadata and controls
33 lines (29 loc) · 751 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
26
27
28
29
30
31
32
33
<!doctype html>
<!-- comments look like this -->
<html>
<head>
<title>
Cool Website Title
</title>
<!-- <link rel.../> tag goes here. -->
</head>
<body>
<header> <!-- stuff that never changes (site name, navigation) -->
<h1>My New Shiny Website</h1>
<div> <!-- navigation section -->
<span><a href="about.html">About Me</a></span>
<span><a href="resume.html">Resume</a></span>
<span><a href="">Github</a></span>
</div>
</header>
<main> <!-- stuff that changes on every page -->
With shiny content that should go here!
Note that although this line looks like it should start a new paragraph,
it doesn't.
<p>Instead, put paragraphs in these tags</p>
<p>Like this.</p>
</main>
<footer>
</footer>
</body>
</html>