-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.html
41 lines (35 loc) · 954 Bytes
/
output.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
<!DOCTYPE html>
<head>
<title>Personal Builds Website Generator</title>
<link rel="stylesheet" href="css/reset.css" type="text/css" />
<link rel="stylesheet" href="css/homepage-style.css" type="text/css" />
<link rel="stylesheet" href="css/output.css" type="text/css" />
</head>
<html>
<body>
<header>
<img id="logo" src="img/codinglogo.gif" >
<h1>Get the Code!</h1>
<nav>
<!-- # is to not swap pages -->
<a href="index.html">Home</a>
<a href="build.html">Build Your Website</a>
<a href="#">Get the Code</a>
<a href="about-us.html">Developers</a>
</nav>
</header>
<main>
<section>
<p>HTML Output</p>
<p id="HTML"></p>
</section>
<section>
<p>CSS Output</p>
<p id="CSS"></p>
</section>
</main>
<footer>
</footer>
</body>
<script src="js/output.js"></script>
</html>