-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Drew Everlast
committed
Mar 16, 2020
1 parent
0a4c0cb
commit d9b4af4
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<!DOCTYPE html> | ||
<!-- This website template was created by: Andrew Oldring --> | ||
<html lang="en"> | ||
<head> | ||
<link rel="stylesheet" href="../template/css/styles.css"> | ||
<!-- TemplateBeginEditable name="doctitle" --> | ||
<title>Drew Kills Photography</title> | ||
<!-- TemplateEndEditable --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes" /> | ||
<link rel="shortcut icon" type="image/x-icon" href="../template/favicon.ico" /> | ||
<!-- TemplateBeginEditable name="head" --> | ||
<!-- TemplateEndEditable --> | ||
</head> | ||
<body> | ||
<div id="mySidenav" class="sidenav"> | ||
<a href="#" class="closebtn" onClick="closeNav()">×</a> | ||
<a href="#">Home</a> | ||
<a href="#">Gallery</a> | ||
<a href="#">Contact</a> | ||
</div> | ||
<div class="main" id="main"> | ||
<span onClick="openNav()">☰ Menu</span> | ||
</div> | ||
|
||
<script src="../template/scripts/javascript.js"></script> | ||
<div id="container"> | ||
|
||
<!-- Use the header area for the website name or logo --> | ||
<header> | ||
<a href="../template/index.html"><img src="../template/images/dkplogo.jpg" alt="DKP Logo"></a> | ||
</header> | ||
|
||
<!-- Use the nav area to add hyper links to other pages within the website --> | ||
<nav> | ||
<ul> | ||
<li><a href="../template/index.html">Home</a></li> | ||
<li><a href="../template/gallery.html">Gallery</a></li> | ||
<li><a href="../template/contact.html">Contact Me</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<!-- Use the main area to add the main content of the web page --> | ||
<main> | ||
|
||
</main> | ||
|
||
<!-- Use the footer area to add web page footer content --> | ||
<footer> | ||
Copyright (c) 2020 Andrew Oldring<br> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
<a href="https://github.com/drewkills/DKPhotography">Powered by GitHub, Inc.</a> | ||
</footer> | ||
|
||
</div> | ||
|
||
</body> | ||
</html> |