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

Working MVP still #592

Open
wants to merge 4 commits 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
173 changes: 141 additions & 32 deletions contact.html
Original file line number Diff line number Diff line change
@@ -1,61 +1,170 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact Us</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js"></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>

<body>

<h1>Contact</h1>
<div class="header-div">
<div class="additional header">
<header>


<div class="logo">S&J</div>

<nav class="nav nav-hidden">
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
<a href="aboutus.html">About Us</a>
<a href="projects.html">Projects</a>
</nav>
<img id="hamburger" src="img\nav-hamburger.png" alt="hamburger">
</header>
</div>
</div>

<!-- Contactd Us Content -->

<div class="container contact">
<img src="img\contact\contact-mobile-jumbotron.png" alt="" class="mobile-jumbo">
<img src="img\contact\contact-jumbotron.png" class="jumbo" alt="">
<h1 class="jumbo-text-contact">Contact Us</h1>
<div class="inner-container">

<div class="left-side-of-page">
<h2>Get In Touch</h2>

<p class="form-header">Email Address</p>

<!-- Contactd Us Content
Contact Us

Get In Touch
<form action="">
<input class="email-text" placeholder="Enter email" type="text">
</form>
<p class="form-footer">
We'll never share your email with anyone else.
</p>

Email Address
Enter Email
We'll never share your email with anyone else.
<p class="form-header">
How many buildings do you need planned?
</p>
<select class="numbers">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>

How many buildings do you need planned?
1-5
<p class="form-header">
Provide a brief overview of your project needs:
</p>
<form id="project-needs">
<textarea id="needs" name="needs" placeholder=""></textarea>

Provide a brief overview of your project needs:
</form>

I am a small business
I am a residential owner
I am a corporation
<form action="" id="type-of-person">
<input class="radio" type="radio">I am a small business<br>
<input class="radio" type="radio">I am a residential owner<br>
<input class="radio" type="radio">I am a corporation<br>
</form>

Submit

Where We Work
<button class="submit">Submit</button>
</div>

New York
123 Lane
Suite 100
Albany, NY 12345
202 555 0144
<div class="right-side-of-page">
<div class="right-inner-container">
<h2>Where We Work</h2>

Florida
Ocean Drive
Suite 201
Orlando, FL 22345
502 555 0144
<address>
<h3>New York</h3>
123 Lane<br>
Suite 100<br>
Albany, NY 12345<br>
202 555 0144
</address>
<address>
<h3>Florida</h3>
Ocean Drive<br>
Suite 201<br>
Orlando, FL 22345<br>
502 555 0144
</address>
<address>
<h3>California</h3>
Mountain Street<br>
Suite 105<br>
San Diego, CA 22345<br>
702 555 0144
</address>

California
Mountain Street
Suite 105
San Diego, CA 22345
702 555 0144
</div>
</div>
</div>
</div>

-->
<div class="footer-div">
<!-- FOOTER CONTENT -->
<footer>
<div class="contact">
<div class="lets-talk">
<h2>Interested in starting a project?</h2>
<h2> Let’s talk:</h2>
<form id="email">
<input class="email-text" type="text" placeholder="Enter your email">
</form>
<p> We'll never share your email with anyone else.
</p>

</div>

<div class="addresses">
<address>
<h2>New York</h2><br>

123 Lane <br>
Suite 100<br>
Albany, NY 12345<br>
202 555 0144
</address>

<address>
<h2>Florida</h2><br>
Ocean Drive<br>
Suite 201<br>
Orlando, FL 22345<br>
502 555 0144
</address>

<address>
<h2>California</h2><br>
Mountain Street<br>
Suite 105<br>
San Diego, CA 22345<br>
702 555 0144
</address>

</div>
</div>
<br>
<div class="copyright">
Copyright © 2018 Smith and Jones

</div>
</footer>
</div>
<script src="js/index.js"></script>
</body>

</html>
Loading