Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Uploading Files #1131

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
Binary file modified .DS_Store
Binary file not shown.
62 changes: 62 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<!doctype html>

<html lang="en">
<head>
<meta charset="utf-8">

<title>Fun Bus Travel Agency - Solution</title>

<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Roboto" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">

<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>

<body class="contact">

<div class="nav">
<a href="index.html" class="logo">Fun Bus</a>
<nav>
<a href="index.html">home</a>
<a href="#">about us</a>
<a href="#">blog</a>
<a href="contact.html" class="current">contact</a>
</nav>
</div>

<header>
<img src="/img/fun-bus.jpg" alt="main image">

<div class="header-content">
<h2>contact the fun Bus!</h2>
<p>Please submit the form below to contact us!</p>
</div>

</header>

<div class="container contact">

<section class="content-section">
<div class="text-content">
<h2>Contact Form</h2>

</div>
<form action="">
<input type="text" name="name" placeholder="Name">
<input type="email" name="email" placeholder="Email">
<input type="tel" name="phone" placeholder="Phone">
<textarea name="comments" cols="30" rows="10" placeholder="Let us know how can we help..."></textarea>
<input type="submit" value="Send" class="button">
</form>
</section>

</div><!-- container -->

<footer class="footer">
<p>Copyright Fun Bus 2018</p>
</footer>

</body>
</html>
Binary file removed css/.DS_Store
Binary file not shown.
Loading