Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions One-Page-Website/contact us.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<title>Contact us</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!--NAVBAR-->
<nav>
<ul>
<li><a href="one_page_website.html">HOME</a></li>
<li><a href="contact us.html">CONTACT US</a></li>
</ul>
</nav>
<!--HEADER-->
<header>
<div>
<h1>Contact Us!</h1>
<p>The Friendly Horse Training Team!</p>
</div>
</header>
<!--FORM-->
<section>
<div>
<h3>Please provide your contact information
and a brief message of your inquiry.
</h3>
<div>
<form>
<input type="text" placeholder="First Name">
<input type="text" placeholder="Last Name"><br>
<input type="email" placeholder="Email Address"><br>
<input type="tel" placeholder="Phone Number"><br>
<input type="checkbox" id="Newsletter">
<label for="Newsletter">Would you like to receive our monthly newsletter?</label><br>
<textarea placeholder="Type message here..."></textarea><br>
<input type="submit" value="Submit">
</form>
</div>
</div>
</section>
<!--FOOTER-->
<footer>
<table>
<tr>
<td>
<p> Horse Training&copy;</p>
</td>
<td>
<p>123 Circle Drive</p>
<p>Paris, TX 97204</p>
</td>
<td>
<p>503-234-3966</p>
</td>
</tr>
</table>
</footer>
</body>
</html>
Binary file added One-Page-Website/horse images/advanced.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added One-Page-Website/horse images/beginner.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added One-Page-Website/horse images/intermediate.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 85 additions & 0 deletions One-Page-Website/one_page_website.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<title>Horse Training</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!--NAVBAR-->
<nav>
<ul>
<li><a href="one_page_website.html">HOME</a></li>
<li><a href="contact us.html">CONTACT US</a></li>
</ul>
</nav>
<!--HEADER-->
<header>
<div>
<h1>Welcome to Horse Training</h1>
<p>Your first choice for all your horse training needs!</p>
</div>
</header>
<!--TRAINING PROGRAMS-->
<section>
<div>
<h2>Our Training Programs</h2>
<ul>
<li><a href="#beginner">Beginner Training</a></li>
<li><a href="#intermediate">Intermediate Training</a></li>
<li><a href="#advanced">Advanced Training</a></li>
</ul>
</div>
</section>
<!--PET IMAGES-->
<section>
<div>
<h2>Choose a Horse!</h2>
<div>
<!--beginner IMAGE-->
<div id="beginner">
<h3>Beginner Training</h3>
<img src="horse images/beginner.jpg" alt="Beginner horse rides">
</div>
<!--INTERMEDIATE IMAGE-->
<div id="intermediate">
<h3>Intermediate Training</h3>
<img src="horse images/intermediate.jpg" alt="Intermediate horse rides">
</div>
<!--ADVANCED IMAGE-->
<div id="advanced">
<h3>Advanced Training</h3>
<img src="horse images/advanced.jpg" alt="Advanced horse rides">
</div>
<!--VIDEOS-->
<section>
<!--RIDING VIDEOS-->
<div>
<h3>Videos</h3>
<iframe width="1280" height="720" src="https://www.youtube.com/embed/Lzqf5rERiSs?si=fHePdI5JyV1U1bpu" frameborder="0" allowfullscreen></iframe>
</div>

</div>

</div>
</section>
<!--FOOTER-->
<footer>
<table>
<tr>
<td>
<p>Horse Training &copy;</p>
</td>
<td>
<p>123 Circle</p>
<p>Paris, TX 12345</p>
</td>
<td>
<p>555-123-4567</p>
</td>
</tr>
</table>
</footer>
</body>
</html>