-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 850 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 850 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width initial-scale=1.0">
<link rel="stylesheet" href="css/chp01.css">
<title>JavaScript & jQuery Homepage</title>
</head>
<body>
<h1 id="companyLogo"></h1>
<h3 id="greeting"></h3>
<p>
For all orders and inquiries please call
<em>555-3344</em>
</p>
<a href="html/chp02/chp02-main.html">Chp 02 - Basic JavaScript Instructions</a>
<a href="html/chp03/chp03-main.html">Chp 03 - Functions, Methods & Objects</a>
<a href="html/chp04/chp04-main.html">Chp 04 - Decisions & Loops</a>
<a href="html/chp05/chp05-main.html">Chp 05 - Document Object Model</a>
<a href="html/chp06/chp06-main.html">Chp 06 - Events</a>
<script src="JavaScript/chp01/chp01.js"></script>
</body>
</html>