diff --git a/README.md b/README.md index dffdf0bc8..9a65c5b07 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +# Adding my name per project instructions +# Kristi Gribble + # User Interface Project: Great Idea Web Page 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. @@ -37,4 +40,4 @@ Stretch goals are not required. Complete the project objectives before working o - [ ] 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 \ No newline at end of file +- [ ] Research CSS animations and see how you could implement some ideas when hovering over buttons or navigation items diff --git a/header-img.png b/header-img.png new file mode 100644 index 000000000..dba483f10 Binary files /dev/null and b/header-img.png differ diff --git a/index.css b/index.css new file mode 100644 index 000000000..a7f0a28aa --- /dev/null +++ b/index.css @@ -0,0 +1,138 @@ +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} + +/* Set every element's box-sizing to border-box */ +* { + box-sizing: border-box; +} + +html, body { + height: 100%; + font-family: 'Titillium Web', sans-serif; +} + +h1, h2, h3, h4, h5 { + font-family: 'Bangers', cursive; + letter-spacing: 1px; + margin-bottom: 15px; +} + +/* Your code starts here! */ +.container { + width: 900px; + margin: auto; +} + +nav { + display: inline-block; +} + +nav a{ + margin: 20px 10px; + padding: 20px; + text-decoration: none; +} + +.logo { + margin-top: 20px; +} + +.box { + margin: 40px 0px; + width: 100%; + +} +.box-text { + display: inline-block; + vertical-align: top; + text-align: center; + margin: 20px; + width: 48%; + font-size: 60px; + +} +.box-text a{ + text-decoration: none; + font-size: 20px; + border: 1px solid black; + padding: 0 20px; +} + +.content-1 { + border-top: 1px solid black; + margin: 1%; + width: 98%; +} + +.content-1-box { + display: inline-block; + margin: 1%; + width: 46%; +} + +.content-2-box { + display: inline-block; + margin: 1%; + width: 30%; +} + +.contact { + border-top: 1px solid black; + margin: 1px; + width: 98%; +} + +.contact h3 { + margin-top: 20px; +} + +footer { + padding: 20px 0; + text-align: center; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 000000000..6f81884b8 --- /dev/null +++ b/index.html @@ -0,0 +1,86 @@ + + + + + + + Great Idea! + + + + + + + + + +
+
+ + +
+ + +
+
+

Innovation
On
Demand

+ Get Started +
+ 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.

+
+
+ + 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

+ sales@greatidea.io + +
+ + + +
+ + \ No newline at end of file diff --git a/logo.png b/logo.png new file mode 100644 index 000000000..d4fee06fa Binary files /dev/null and b/logo.png differ diff --git a/mid-page-accent.jpg b/mid-page-accent.jpg new file mode 100644 index 000000000..72cd8b477 Binary files /dev/null and b/mid-page-accent.jpg differ