-
Notifications
You must be signed in to change notification settings - Fork 20
Sheri Matos Assignment #1 #4
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,27 @@ | ||
| <!DOCTYPE html> | ||
| <html> | ||
| <head> | ||
| <meta charset="utf-8"> | ||
| <title>Assignment 1 </title> | ||
| </head> | ||
| <body> | ||
| <h1> Assignment 1: Q & & A in HTML </h1> | ||
| <h2> Sheri Matos</h2> | ||
| </body> | ||
|
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. This |
||
| <h3> Do you consider yourself more of a designer or developer ?</h3> | ||
| <p> I consider myself more of an designer than a developer because my passion is driven by creativity and inspiration to improve and create. </p> | ||
|
|
||
|
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've done some good things with the QA markup. Overall I'm looking to see these things:
I should say up front that there is no perfect answer for how to mark up this assignment — see this discussion. There is no Q&A element in HTML5. So I'm more looking that you have made an effort to do the three things above.
So for the most part 2 and 3 above are covered. What I'd like you to add is something for 1 that shows they are a pair. I could be wrapping them in a section or div element. When you add those, especially the div, it is a good idea to add a class. This way these divs are different than others you might want on the page: |
||
| <h3> What are you most interested in learning in this class?</h3> | ||
| <p>Im most interested learning in this class is designing page layouts and intergrating multimedia using css and other scripted languages. </p> | ||
|
|
||
| <h3> What is good design?</h3> | ||
| <p>Good design is innovative, useful, informative, focused and keeps viewer engaged.</p> | ||
|
|
||
| <h3>What is good web design?</h3> | ||
| <p> Good web design is providing accurate and updated information, appropriate placement of text, hyperlinks, images and videos; functionabilty and visual delight for the user. </p> | ||
|
|
||
| <h3>What are the good examples of conference/event web sites?</h3> | ||
| <p> A good example for an event web site is Splashthat.com because the navigation is fun yet easy to follow though. It has a nice balance of color and white space. The page layout keeps the viewer engaged without overpowering. | ||
| and an good example for an conference web site is webex.com because the navigation is clear and concise, the color and white space are the perfect balance for the professional image. | ||
| </p> | ||
|
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. I realize based on your answers that I wasn't totally clear with my instructions. By "conference" I meant an event where there is a topic and are speakers and a schedule and people go to hear the speakers and talk to each other about the topic at a specific date and time. By "event" I meant again some kind of happening that was time based but this time it didn't have to be a conference about a topic but could be any event like a concert or whatever. You should choose at least one conference site (you can choose two if you like). The other one can be an event if you choose only one conference. |
||
| </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.
There's nothing wrong with what you have so far but you are missing a meta tag that should be in the head:
<meta charset="utf-8">This is important to let the browser know how to deal with characters and this particular charset, utf-8, handles many languages.