-
Notifications
You must be signed in to change notification settings - Fork 20
Homework- Giovanni Soto #12
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| /* this centers my content on the browser window */ | ||
| .wrapper{ | ||
| width:800px; | ||
| height:620px; | ||
| margin:0px auto; | ||
| padding:10px 20px; | ||
| border:3px solid #999; | ||
| } | ||
| #header{ | ||
|
|
||
| h1, h2{ | ||
| color:#999; | ||
| text-align:center; | ||
| } | ||
| h2{ | ||
| color:#666; | ||
| } | ||
| #navigation{ | ||
| height:50px; | ||
| } | ||
| #navigation li{ | ||
| display:inline; | ||
| float:right; | ||
| margin-right:20px; | ||
| } | ||
| a:link{ | ||
| text-decoration:none; | ||
| color:#ff0066; | ||
| } | ||
| a:visited{ | ||
| text-decoration:none; | ||
| color:#666; | ||
| } | ||
| a:hover{ | ||
| text-decoration:none; | ||
| color:#00ccff; | ||
| } | ||
| #mainContent{ | ||
|
|
||
| } | ||
| h3{ | ||
|
|
||
| } | ||
| hr{ | ||
|
|
||
| } | ||
| .entryPost p{ | ||
|
|
||
| } | ||
| #sideBar{ | ||
|
|
||
| } | ||
| #sideBar h3{ | ||
|
|
||
| } | ||
| #sideBar hr{ | ||
|
|
||
| } | ||
| #sideBar ul li{ | ||
|
|
||
| } | ||
| #footer{ | ||
| text-align:center; | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="utf-8"> | ||
| <title>Q&A in HTML</title> | ||
| <link rel="stylesheet" type="text/css" href="css/style4.css"> | ||
| </head> | ||
| <body> | ||
| <div class="wrapper"> | ||
| <div id="header"> | ||
| <h1>Assignment 1: Q & A in HTML</h1> | ||
| <h2>Giovanni Soto</h2> | ||
| </div><!-- end of header --> | ||
|
|
||
| <hr> | ||
| <div class="entryPost"> | ||
| <ul>* Do you consider yourself more of a designer or developer (or something else, other answers are acceptable)? | ||
| <br> | ||
| I consider myself more of a designer/artist/creator</ul> | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are on the right track with the list, but there are some validation errors with the markup. When using a ul or ol list EVERYTHING in the list needs to be inside Notice there is only one set of |
||
| <ul>* What are you most interested in learning in this class? | ||
| <br> | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Generally only use br when you need to break a line in a paragraph. For example you might list an address |
||
| Aesthetics in web design. Making something look good from an idea.</ul> | ||
| <ul>* What is good design? | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Once you correct the syntax for this list you can remove the * for each question. |
||
| <br> | ||
| Good design is when something is created with the point as clear, and clever as can be. A medium between art and functionality </ul> | ||
| <ul>* What is good web design? | ||
| <br> | ||
| Good web design is when a website looks, functions and embodies good design, clarity, and an enjoyable experience. </ul> | ||
| <ul>* What are the good examples of conference/event web sites? Answer by listing at least two sites including each URL and why you chose the site. | ||
| <br> | ||
| <a href="http://www.eventsy.com">Eventsys</a> - This website has a simplistic approach with very nice "flat" design. They use colors that pop, and simplistic icons. Clear, simple, and full of character. | ||
| <br> | ||
| <a href="http://barcampomaha.org">BarCamp Omaha</a> - I chose this site because of the friendly, fun, and thoughtful design. It has a very unique flow all throughout the website. Nice images and good color scheme. | ||
| </ul> | ||
| </div><!-- end of entryPost--> | ||
| </div><!-- end of mainContent --> | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is no opening mainContent div. Either add the opening or remove this. |
||
| <div id="footer"> | ||
|
|
||
| </div><!-- end of footer --> | ||
| </div><!-- end of wrapper --> | ||
| </body> | ||
| </html> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because the ampersand & character is used in other ways in HTML it won't be valid if you just write it out. Instead use the character entity:
&wherever you want it to appear.Also later on in your h1