Skip to content

Jason-Holloway. Initial push, working on the header for Home page, web design index.html #587

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
Show all changes
18 commits
Select commit Hold shift + click to select a range
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/node_modules
.DS_Store
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ You will use Trello to report your progress on the MVP and any extra features yo
- Don't overplan, start coding as soon as you can and adjust accordingly. Trello is there as a guide not as a distraction

## Trello Set Up:
* [ ] Create a [Trello account](https://trello.com/)
* [ ] Create a new public board called "S&J Architects - By Your Name"
* [ ] Create lists titled ```backlog```,```To Do```, ```In Progress```, and ```Done```
* [ ] Fill in the ```To Do``` list with the MVP features listed below
* [ ] Fill in the ```backlog``` list with all the extra features listed below
* [ ] Share your board with the Project Manager that has been assigned to you. If you have not been assigned yet, reach out to your lead TA for guidance
* [x] Create a [Trello account](https://trello.com/)
* [x] Create a new public board called "S&J Architects - By Your Name"
* [x] Create lists titled ```backlog```,```To Do```, ```In Progress```, and ```Done```
* [x] Fill in the ```To Do``` list with the MVP features listed below
* [x] Fill in the ```backlog``` list with all the extra features listed below
* [x] Share your board with the Project Manager that has been assigned to you. If you have not been assigned yet, reach out to your lead TA for guidance

## Assets Provided:
* [Style guide:](/DesignFiles/style-guide.md) This file will help you identify font sizes, colors, and font families across the site.
Expand Down
90 changes: 57 additions & 33 deletions contact.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<title>Contact Us</title>
Expand All @@ -12,50 +13,73 @@

<body>

<h1>Contact</h1>
<div class="container30">
<div class="headwrapper">

<h1>S&J
<img class="nav-button" src="img\nav-hamburger.png" /></h1>

</div>
<div class="container19">

<!-- Contactd Us Content
Contact Us

Get In Touch

Email Address
Enter Email
We'll never share your email with anyone else.

How many buildings do you need planned?
1-5
<div class="menu">
<h1>S&J
<img class="nav-button" src="img\nav-hamburger-close.png" /> </h1>

Provide a brief overview of your project needs:
<ul>
<li class="link"><a href="index.html">Home</a></li>
<li class="link"><a href="services.html">Services</a></li>
<li class="link"><a href="contact.html">Contact</a></li>
</ul>
</div>
<img src="img\contact\contact-jumbotron.png" alt="jumbo" style="width:100%">
<div class="text-content">
<p>Contact Us</p>

I am a small business
I am a residential owner
I am a corporation
</div>
</div>

Submit
<div class="main-content">
<div class="container20">
<h2>Get in touch</h2>

Where We Work
<p>Email address</p>

New York
123 Lane
Suite 100
Albany, NY 12345
202 555 0144
<form>
<input type="email" placeholder="Enter email">
</form>
<h3>We'll never share your email with anyone else.</h3>

Florida
Ocean Drive
Suite 201
Orlando, FL 22345
502 555 0144
<p>How many buildings do you need planned?</p>
<select>
<option value="num">1</option>
<option value="num2">2</option>
<option value="num3">3</option>
<option value="num4">4</option>
</select>

California
Mountain Street
Suite 105
San Diego, CA 22345
702 555 0144
<p>Provide a breif overview of your project needs</p>

-->
<textarea name="message" rows="10" cols="55">
</textarea>
</div>

<script src="js/index.js"></script>
<div class="container21">
<form action="">
<input type="radio" name="customer" value="business"> I am a small business<br>
<input type="radio" name="customer" value="personal"> I am a residential owner<br>
<input type="radio" name="customer" value="corp"> I am a corporation
</form>
<button>Submit</button>
</div>
<div class="container22">
<h2>Where we work</h2>
</div>
</div>

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

</html>
Loading