-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyWebsite.php
35 lines (34 loc) · 977 Bytes
/
MyWebsite.php
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<script type="text/javascript" src="MyDesign.js"></script>
<link rel="stylesheet" href="MyDesign.css">
<title>TheCodeNinja</title>
<!--Thin Banner-->
<div id="thin_banner"><h3>Jerry The Code Ninja</h3></div>
<!--Navigation Bar-->
<nav id="closenav">
<ul id="site_nav_bar">
<li><a href="#">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">About Me</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Login</a></li>
</ul>
</nav>
</head>
<body>
<div id="welcome-section">
<h1>Welcome</h1>
<p>This is my own personal website. Why not take a look around</p>
<p id="smiley"> =) </p>
</div>
<div id="my-interest">
</div>
</body>
<footer></footer>
</html>