Skip to content

Commit

Permalink
Updates to UI Project 1
Browse files Browse the repository at this point in the history
  • Loading branch information
BigKnell committed Jun 10, 2018
1 parent 9a7716f commit 043eef3
Show file tree
Hide file tree
Showing 7 changed files with 96 additions and 98 deletions.
45 changes: 31 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,38 @@
# User Interface Project: Great Idea Web Page

Being able to create a user interface from a design file is considered a basic necessity for front end developers. We will be building a single page website using HTML and CSS.
Being able to create a user interface from scratch based on a design file is considered a basic necessity for front end developers. We will be building a single page website using HTML and CSS.

Given this [design file](design-files/desktop.jpg), use CSS to style the web page layout. Remember, you can only use `display:inline-block` and box model CSS properties for layout.
Given this [design file](design-files/desktop.jpg), use HTML and CSS to build the web page layout. Remember, you can only use `display:inline-block` and box model CSS properties for this project. **Note: you are NOT permitted to use Flexbox or CSS Grid. This is an exercise in basic layout techniques.**

***Useful Resource: [Layout Using inline-block](http://learnlayout.com/inline-block-layout.html)***
**Lambda Life Tip:** Use the code from your instructor's demonstration to help you tackle the objectives.

***Objectives:***
- Layout the provided HTML using `display:inline-block` and box model CSS properties only
- Style the whole page based on the [design](design-files/desktop.jpg)
- Try to make your styles match the design as closely as you can
## To Get Started

***Stretch Goal:***
- Delete the provided HTML and build your own structure
- Attemp the layout using floats and clears

#### To Get Started
* Fork / Clone this project into a directory on your machine.
* Pull up the code into your preffered text editor.
* Start coding!

* Open the code with your preferred integrated development environment (IDE).

* Start on the objectives

## Objectives:

Project objectives are meant to increase your knowledge by giving you practice on the principles learned earlier in the day. Aim to complete every objective on this list. Get as far as you can on the design as we will be using your work today for tomorrow's project as well.

- [ ] Study the [desktop design file](design-files/desktop.jpg). Visualize how you would convert the design into HTML and CSS. Make a quick sketch of how you would build the HTML structure. Use your sketch as a plan of action for the next two objectives. Challenge yourself to only use 10 minutes for this particular objective.

- [ ] Go to your [index.html](great-idea-website/index.html) file and build out your HTML structure. You have been provided all the content and images you need to get started inside the `index.html` file. Start to code HTML around the content!

- [ ] Style your HTML using the [desktop design file](design-files/desktop.jpg) as a visual guide. Use any CSS properties you want for general styling but for layout, you can only use the box model (content, padding, margin, border) and `display:inline-block`.

## Stretch Goals:

Stretch goals are not required. Complete the project objectives before working on stretch. Stretch goals are not covered in the guided demo and need some research on your part. There is no particular order in this list, just pick one that sounds fun and push yourself.

- [ ] Give the navigation a background color and have it be fixed to the top of the page so that it scrolls with the user. You will want to study what z-index means in case you encounter any issues when you scroll.
- [ ] Introduce a new font family from [google fonts](https://fonts.google.com/)

- [ ] Create a new page based off of a navigation item. Create your own layout using box model and `display: inline-block;`

- [ ] Change all the image tags into background images instead

- [ ] Research CSS animations and see how you could implement some ideas when hovering over buttons or navigation items
2 changes: 2 additions & 0 deletions great-idea/css/index.css → great-idea-website/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,5 @@ h1, h2, h3, h4, h5 {
letter-spacing: 1px;
margin-bottom: 15px;
}

/* Your code starts here! */
File renamed without changes
File renamed without changes
File renamed without changes
63 changes: 63 additions & 0 deletions great-idea-website/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!doctype html>

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

<title>Great Idea!</title>

<link href="https://fonts.googleapis.com/css?family=Bangers|Titillium+Web" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">

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

<body>

Services
Product
Vision
Features
About
Contact

<img class="logo" src="img/logo.png" alt="Great Idea! Company logo.">
Innovation
On
Demand

Get Started

<img src="img/header-img.png" alt="Image of a code snippet.">

Features
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.


About
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.

<img class="middle-img" src="img/mid-page-accent.jpg" alt="Image of code snippets across the screen">

Services
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.


Product
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.

Vision
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.

Contact
123 Way 456 Street
Somewhere, USA
1 (888) 888-8888
[email protected]

Copyright Great Idea! 2018

</body>
</html>
84 changes: 0 additions & 84 deletions great-idea/index.html

This file was deleted.

0 comments on commit 043eef3

Please sign in to comment.