diff --git a/README.md b/README.md index 60debd6..e0afd6f 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ __________________ ## [html: Basic Questions for Begginers](http://www.thatjsdude.com/interview/html.html) -15 basic questions and asnwers +15+ basic questions and asnwers ______ 1. Why do you need doctype? 2. What are data-* attributes used for? @@ -187,6 +187,7 @@ ______ 13. How to serve html in multiple languages? 14. Explain standard and quirks mode. 15. What is a semantic tag? +16. Differentiate between an Ordered list and an Unordered list? #### [HTML: Answers for Basic Questions](http://www.thatjsdude.com/interview/html.html) diff --git a/html.html b/html.html index badeb7c..58258a8 100644 --- a/html.html +++ b/html.html @@ -80,6 +80,7 @@

HTML related interview questions

  • How to serve html in multiple languages?
  • Explain standard and quirks mode.
  • What is semantic tag?
  • +
  • Differentiate between an Ordered list and an Unordered list?
  • Need more: CSS Interview Questions, JavaScript Beginners Algorithm

    @@ -230,7 +231,45 @@

    15. semantic

    Answer: read it in Stackoverflow

    -
    +
    +

    1. list_html

    +

    Question: Differentiate between an Ordered list and an Unordered list?

    +

    Answer: An unordered list uses

    tags and each element of the list is written between
  • tags. The list items are displayed as bullets rather than numbers. + An ordered list uses
    tags and each element of the list is written between
  • tags. The list items are displayed as numbers rather than bullet points.

    +
    
    +  
    +
    +
    +
    +  
    +
    +    

    HTML List Example

    + +
      + +
    • Coffee
    • + +
    • Tea
    • + +
    • Milk
    • + +
    + +
      + +
    1. Coffee
    2. + +
    3. Tea
    4. + +
    5. Milk
    6. + +
    + + + + +
    +

    Need more!

    More questions: CSS Interview Questions, JavaScript Beginners Algorithm

    read: HTML5