-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.htm
47 lines (47 loc) · 1.19 KB
/
index.htm
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
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" lang="en"/>
<title>Test</title>
<script src="_src/jquery.js"></script>
<link href="_src/style.css" rel="stylesheet" />
<script src="_src/site.js"></script>
</head>
<body>
<header>
<h1>Professor Stines' Tips for Web Development *</h1>
<p>* = and Students'!</p>
</header>
<nav>
<ul>
<li><a href="#">Section 1 - Be Patient</a></li>
<li><a href="#">Section 2 - Try, Try Again</a></li>
<li><a href="#">Section 3 - Research</a></li>
</ul>
</nav>
<main>
<div class="sect">
<h1>Section 1 - Be Patient</h1>
<h3>Beware of Syntax Errors</h3>
<p>They are the devil!</p>
<h3>Regularly Check the Validator</h3>
<p>Easier to find errors when you first make them</p>
</div>
<div class="sect">
<h1>Section 2 - Try, Try Again</h1>
<h3>Practice Makes Perfect</h3>
<p>Here's an example</p>
<h3>Why do we fall down Bruce?</h3>
<p>So we can learn to pick ourselves back up again!</p>
</div>
<div class="sect">
<h1>Section 3 - Research</h1>
<h3>Someone somewhere has had the same question.</h3>
<p>stackoverflow.com !!</p>
</div>
</main>
<footer>
<h3>Thanks for Playing!</h3>
</footer>
</body>
</html>