-
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
authored
Nov 24, 2023
1 parent
d9b4af4
commit f75c068
Showing
1 changed file
with
49 additions
and
60 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 |
---|---|---|
@@ -1,66 +1,55 @@ | ||
<!DOCTYPE html> | ||
<!-- This website was created by: Andrew Oldring --> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link rel="stylesheet" href="css/styles.css"> | ||
<title>Drew Kills Photography</title> | ||
<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="favicon.ico" /> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes" /> | ||
<link rel="stylesheet" href="css/styles.css"> | ||
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> | ||
<title>Drew Kills Photography</title> | ||
</head> | ||
<body> | ||
<div id="container"> | ||
|
||
<header> | ||
<a href="index.html"><img src="images/dkplogo.jpg" alt="DKP Logo"></a> | ||
</header> | ||
|
||
<nav> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="gallery.html">Gallery</a></li> | ||
<li><a href="contact.html">Contact Me</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<main> | ||
<h1>Welcome!</h1> | ||
<p>Welcome to Drew Kills Photography. I pride myself in taking beautiful photos and videos for clients.</p> | ||
|
||
<div class="mobile"> | ||
<h3>First Photos Free!</h3> | ||
<p><a href="tel:5096077347">Call Us Today to Get Started</a></p> | ||
<h4>Phone Hours:</h4> | ||
<p>Monday - Thursday: 4:00pm - 10:00pm<br> | ||
Friday: 4:00pm - 11:30pm<br> | ||
Saturday: 10:00am - 11:30pm<br> | ||
Sunday: 10:00am-9:15pm</p> | ||
</div> | ||
|
||
<div class="desktop"> | ||
<p>I have strived to be the best in the business and I hope to have you be a part of my journey.<br> | ||
Located in the beautiful Pacific Northwest.</p> | ||
</div> | ||
</main> | ||
|
||
<footer> | ||
<p>© 2020 Andrew Oldring</p> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
<a href="https://github.com/drewkills/DKPhotography">Powered by GitHub, Inc.</a> | ||
</footer> | ||
|
||
</div> | ||
<script src="scripts/javascript.js"></script> | ||
<script src="scripts/countdown.js"></script> | ||
<div id="container"> | ||
|
||
<!-- Use the header area for the website name or logo --> | ||
<header> | ||
<a href="index.html"><img src="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="index.html">Home</a></li> | ||
<li><a href="gallery.html">Gallery</a></li> | ||
<li><a href="contact.html">Contact Me</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<!-- Use the main area to add the main content of the web page --> | ||
<main> | ||
|
||
<h1>Welcome!</h1> | ||
<p>Welcome to Drew Kills Photography. I pride myself in taking beautiful photos and videos for clients.</p> | ||
|
||
<div class="mobile"> | ||
|
||
<h3>First Photos Free!</h3> | ||
<p><a href="tel:5096077347">Call Us Today to Get Started</a></p> | ||
|
||
<h4>Phone Hours:</h4> | ||
<p>Monday - Thursday: 4:00pm - 10:00pm<br> | ||
Friday: 4:00pm - 11:30pm<br> | ||
Saturday: 10:00am - 11:30pm<br> | ||
Sunday: 10:00am-9:15pm</p> | ||
|
||
</div> | ||
|
||
<div class="desktop"> | ||
<p>I have strived to be the best in the business and I hope to have you be a part of my journey.<br> | ||
Located in the beautiful Pacific Northwest.</p> | ||
</div> | ||
</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> | ||
|
||
<script src="scripts/countdown.js"></script> | ||
</body> | ||
|
||
</html> | ||
</html> |