Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions Assignment_1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Assignment 1: Q-A in HTML </title>
</head>
<body>
<h1>Assignment 1: Q-A in HTML</h1>
<h2>Baramon Lares</h2>



<ol> <li>Do you consider yourself more of a designer or developer (or something else, other answers are acceptable)?
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting choice to put lists within lists. In this case it may be more complex than you need.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When i researched it was the only way to have an

    tag inside of an
      . The solution I found was to have them within an
    1. which was allowed. Thanks for the feedback.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't get a chance to make my comment more complete.

Yes, you are correct that to have a list within a list the inner list has to be inside of the html <li> </li> elements. And you did add them in correctly.

What I would like you to rethink is which elements you use. You really want to accomplish a few things with the markup:

  1. show that the question and answer are a pair (related elements).
  2. Have something be different between the two so that you can style the questions differently than the answers.
  3. Use semantic markup as much as possible.

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.

If you want to keep them in a list one way would be to use a definition list, sitepoint reference

<dl>
    <dt>Question here</dt>
    <dd>answer</dd>
    <dt>Question  2 here</dt>
    <dd>answer 2</dd>
</dl>

and so on. This fultills one and two pretty well (ideally you would have a class or id on the dl ), but it's a bit questionable on 3 as to whether this is the best semantically.

Another alternative is to use something like headings for questions and paragraphs for answers

<h3>question</h3>
<p>answer</p>
<h3>question 2</h3>
<p>answer 2</p>

The problem here is that you don't have any thing for 1 (show the two are a pair). You could add <div></div> tags around each pair to do that. It would create more markup though and semantics is again questionable. For that I would say it depends on how involved the questions and answers are. You can also add a class to all of the answer p's to help distinguish them from other paragraphs on the page and make styling and separation of the pairs easier.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the review, and your definitely right. Mentally I didn't create it for mark-up but yes adding divs and classes will give me more control over them all.

<ul><li> I consider myself more of a designer transitioning into the technical aspect of<strong> UI/UX Design</strong></li></ul></li>

<li>What are you most interested in learning in this class?
<ul><li> I am most interested in learning Responsive Web Design and Modern Web Design</li></ul></li>

<li>What is good design?
<ul><li> To me good design is being able to communicate with the user in a simplistic enjoyable form that's entertaining to the eye. </li></ul></li>

<li> What is good web design?

<ul><li><strong>Good Web Design </strong>isn't about fancy colors and artwork. Good design is being able represent what your trying to communicate to the user that matches the content using less elements with more meaning</li></ul></li>

<li> 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><ul><li> Here are some great examples of websites here. (For which I am a <em>huge fan</em> of <strong>Flat Web Design)</strong> </li></ul>
<p><a href="http://www.psd2html.com/"> PSD2HTML </a> and <a href="http://www.nextr.info/"> Nextr.info</a></p> </li>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These are both fine web sites. But the only problem is that neither of them are for conference or event sites. Since we are dealing with an event web site in class I want you to find some similar sites from which you might draw inspiration and examples.


</ol>
</body>
</html>
29 changes: 29 additions & 0 deletions Assignment_2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Assignment 1: Q-A in HTML </title>
</head>
<body>
<h1>Assignment 1: Q-A in HTML</h1>
<h2>Baramon Lares</h2>
<ol> <li>Do you consider yourself more of a designer or developer (or something else, other answers are acceptable)?</li></ol>
<ul><li> I consider myself more of a designer transitioning into the technical aspect of<strong> UI/UX Design</strong></li></ul>

<ol><li>What are you most interested in learning in this class?</li></ol>
<ul><li> I am most interested in learning Responsive Web Design and Modern Web Design</li></ul>

<ol><li>What is good design?</li></ol>
<ul><li> To me good design is being able to communicate with the user in a simplistic enjoyable form that's entertaining to the eye. </li></ul>

<ol><li> What is good web design?</li></ol>

<ul><li><strong>Good Web Design </strong>isn't about fancy colors and artwork. Good design is being able represent what your trying to communicate to the user that matches the content using less elements with more meaning</li></ul>

<ol> <li> 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.</li></ol>

<br><ul><li> Here are some great examples of websites here. (For which I am a <em>huge fan</em> of <strong>Flat Web Design)</strong> </li> </ul>
<p><a href="http://www.psd2html.com/"> PSD2HTML </a> and <a href="http://www.nextr.info/"> Nextr.info</a> </p>

</body>
</html>
33 changes: 33 additions & 0 deletions Assignment_3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Assignment 1: Q-A in HTML </title>
</head>
<body>
<h1>Assignment 1: Q-A in HTML</h1>
<h2>Baramon Lares</h2>



<ol> <li>Do you consider yourself more of a designer or developer (or something else, other answers are acceptable)?
<ul><li> I consider myself more of a designer transitioning into the technical aspect of<strong> UI/UX Design</strong></li></ul></li>

<li>What are you most interested in learning in this class?
<ul><li> I am most interested in learning Responsive Web Design and Modern Web Design</li></ul></li>

<li>What is good design?
<ul><li> To me good design is being able to communicate with the user in a simplistic enjoyable form that's entertaining to the eye. </li></ul></li>

<li> What is good web design?

<ul><li><strong>Good Web Design </strong>isn't about fancy colors and artwork. Good design is being able represent what your trying to communicate to the user that matches the content using less elements with more meaning</li></ul></li>

<li> 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><ul><li> Here are some great examples of websites here. (For which I am a <em>huge fan</em> of <strong>Flat Web Design)</strong> </li></ul>
<p><a href="http://www.psd2html.com/"> PSD2HTML </a> and <a href="http://www.nextr.info/"> Nextr.info</a></p> </li>

</ol>
</body>
</html>
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Barry Cloud 9 Project </title>
</head>
<body>

</body>
</html>
<!-- uploading. $ git add . , then $git commit -m , $ push
9 changes: 9 additions & 0 deletions something.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title> Im here</title>
</head>
<body>

</body>
</html>