-
Notifications
You must be signed in to change notification settings - Fork 20
homework #1
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?
homework #1
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,60 @@ | ||
| <!DOCTYPE html> | ||
| <html lang='en'> | ||
|
|
||
| <head> | ||
| <title>Assignment 1 Billey Florvulus </title> | ||
| <meta charset='utf-8'> | ||
| </head> | ||
|
|
||
| <body> | ||
|
|
||
| <div ='title'> | ||
|
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 left out either class or id here. I think you meant to write: You do this on all of the other divs on the page. It is great that you're giving classes and ids to your divs though. |
||
| <h1>Assignment Q & A in html</h1> | ||
| </div> | ||
|
|
||
| <div ='name'> | ||
| <h4>Name</h4> | ||
| <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. Using an unordered list here is not very semantic (you aren't listing anything, just writing your name). The easiest solution is to just put your name in the h4. You could also write out If you want to style your name or the word Name differently then put tags around one of them like |
||
| <li>Billey Florvulus</li> | ||
| </ul> | ||
| </div> | ||
|
|
||
| <div = 'designdevlop'> | ||
|
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. In addition to the unique ids you've given to each Q&A pair I'd like you to give them each a class as well like: |
||
| <h4> Designer or Devolper</h4> | ||
| <article> | ||
| <p> I consider myself a bit a both, since I have a passion for both designing and devolping. When it come to which one I excel at more, I'd say the devolping part since I've taken more devolper based classes.</p> | ||
| </article> | ||
| </div> | ||
|
|
||
|
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're doing some things great here and some things I'd like you to update. Let's start with what is great:
Here's what I'd like you to modify:
|
||
| <div ='intrestInlearning'> | ||
| <h4> Intrest in Learning in the Class</h4> | ||
| <article> | ||
| <p> I wanna learn better ways to actually design a website, better coding techiques and all the cool stuff Professor Stein was talking about.</p> | ||
| </article> | ||
| </div> | ||
|
|
||
| <div = 'gooddesign'> | ||
| <h4> What is Good Web Design?</h4> | ||
| <article> | ||
| <p> Good web design stays true to the topic. It doesn't go off on a random tangent just to show you something totally off topic. Good web design is also plays well with the eyes, for example it should actually look not and not hurt your eyes.</p> | ||
| </article> | ||
| </div> | ||
|
|
||
| <div = 'goodexampleofsites'> | ||
| <h4> Good Example of Conference/Event Websites </h4> | ||
| <article> | ||
| <p> Some good example of conference sites are these two. | ||
| <a href='http://www.leaderstheconference.com/'> Number 1</a> | ||
| <a href='http://two5six.com/'>Number 2</a> | ||
|
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. The site for this conference now just shows a landing page. I'm sure it was a great site but can you change it to one that has some content? Also change the names from Number 1 and Number 2 to the names of the conferences. |
||
| </p> | ||
| </article> | ||
| </div> | ||
|
|
||
| <div = 'Giantrobot'> | ||
|
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. What's this in here for? |
||
| <script> | ||
| promt("hey there"); | ||
| </script> | ||
| </div> | ||
|
|
||
| </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.
in HTML5 it is valid to use single quotes ' like you have, BUT... most people use double quotes "
Just FYI