Skip to content

Iner lofgren #586

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

Open
wants to merge 18 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
111 changes: 110 additions & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,116 @@

<body>

<h1>Contact</h1>
<div class="container">
<nav class="navigation">
<h1>S&J</h1>
<div class="nav-items">
<a href="/index.html">Home</a>
<a href="/services.html">Services</a>
<a href="#">Contact</a>
</div>

<img class="navigation-button active" src="/img/nav-hamburger.png" alt="Menu-hamburger">
<img class="navigation-button" src="/img/nav-hamburger-close.png" alt="">
</nav>

<div class="contact-jumbotron">
<img class="contact-jumbo-img" src="/img/contact/contact-jumbotron.png" alt="Abstract Buildings">
<img class="contact-jumbo-mobile-img" src="/img/contact/contact-mobile-jumbotron.png" alt="abstract img">
<div class="contact-jumbotron-text">
<h1>Contact Us</h1>
</div>
</div>

<div class="contact-content">
<section class="contact-form">
<h2>Get In Touch</h2>

<h4>Email</h4>
<input type="text" value="Enter email">
<small>We'll never share your email with anyone else.</small>

<h4>How many buildings do you need planned?</h4>
<input class="how-Many" type="number" min="1" max="5" value="1">

<h4>Provide a brief overview of your project needs:</h4>
<textarea name="" id="" cols="30" rows="10"></textarea>

<form action="">
<input class="radio-button" type="radio" name="bus-type">I am a small business<br>
<input class="radio-button" type="radio" name="bus-type">I am a residential owner<br>
<input class="radio-button" type="radio" name="bus-type">I am a corporation<br>
</form>

<p class="button">Submit</p>
</section>

<section class="contact-location">
<h2>Where We Work</h2>
<address>
<h3>New York</h3>
<p>123 Lane</p>
<p>Suite 100</p>
<p>Albany, NY 12345</p>
<p>202 555 0144</p>
</address>

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

<address>
<h3>California</h3>
<p>Mountain Street</p>
<p>Suite 105</p>
<p>San Diego, CA 22345</p>
<p>702 555 0144</p>
</address>
</section>

</div>

<footer>
<div class="footer-content">
<div class="contact-form">
<h4>Interested in starting a project? </h4>
<h4>Let’s talk:</h4>
<input type="text" value="Enter email">
<p>We'll never share your email with anyone else.</p>
</div>

<address>
<h4>New York</h4>
<p>123 Lane</p>
<p>Suite 100</p>
<p>Albany, NY 12345</p>
<p>202 555 0144</p>
</address>

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

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

<small>Copyright © 2018 Smith and Jones</small>
</footer>
</div>

<!-- Contactd Us Content
Contact Us
Expand Down
Loading