-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththanks.html
63 lines (46 loc) · 1.54 KB
/
thanks.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Fill Me In">
<meta name="author" content="John Doe">
<!-- This start file was build by Paul Cheney -->
<title>HTML5 Start Site by Paul Cheney</title>
<!-- TELLS PHONES NOT TO LIE ABOUT THEIR WIDTH & stops the font from enlarging when a phone is turned sideways-->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- STYLE SHEETS -->
<link href="css/normalize.css" rel="stylesheet">
<!-- phone-default -->
<link href="css/small.css" rel="stylesheet">
<!-- enhance-tablet -->
<link href="css/medium.css" rel="stylesheet">
<!-- enhance-desktop -->
<link href="css/large.css" rel="stylesheet">
</head>
<body>
<!-- HEADER HERE -->
<header>
<h1>Course Proposal</h1>
<h2>Designing Web Forms</h2>
</header>
<!-- NAVIGATION HERE -->
<nav class="clearfix">
<ul >
<li><a href="#">About</a></li>
<li class="active"><a href="#">Propose</a></li>
<li><a href="#">Winners</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<!-- CONTENT HERE -->
<main>
<h1>Course Proposal Application</h1>
<p>Thanks for applying to create a course for our online library. We will get back to you within a week with a response.</p>
</main>
<!-- FOOTER HERE -->
<footer>
© 2018 • Paul Cheney • 123-555-6789
</footer>
<script src="js/scripts.js"></script>
</body>
</html>