-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 818 Bytes
/
index.html
File metadata and controls
36 lines (33 loc) · 818 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
34
35
36
<!doctype html>
<html lang="en-us">
<head>
<title>Hello World! | Luke </title>
<meta name="description" content="I'm learning to build websites. Yay!">
</head>
<body>
<!--
We use this syntax to write comments in HTML. Kind of like "//"
-->
<header>
<nav>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="jobs.html">Jobs</a></li>
</ul>
</nav>
</header>
<h1>Luke's First Web Page!</h1>
<h2>Luke's first subheading</h1>
<p>Some text goes here. Or, <a href="http://www.google.com">search Google</a>.</p>
<p>Check out my <a href="about.html">About page</a>.</p>
<ul>
<li>old item</li>
<li>new item</li>
</ul>
<ol>
<li>first item</li>
<li>second item</li>
</ol>
</body>
</html>