Showing posts with label HTML5. Show all posts
Showing posts with label HTML5. Show all posts

Friday, July 3, 2015

What is the difference between the application model of HTML and HTML5?



    • Trick question, there is no difference. HTML5 is a continuum of HTML and just a souped up version of the original HTML. There has been no major paradigm shift.

What is the difference between and ?



    • A
       is a generic container element for grouping and styling, whereas a  creates divisions within a web page and should be used within the  tag. The use of  and  are no longer popular and are now being replaced with the more flexible 

What is the syntax difference between a bulleted list and numbered list?



    • Bulleted lists use the 
        tag, which stands for “unordered,” whereas 
           is used to create an ordered list.

      . My hyperlink or image is not displaying correctly, what is wrong with it?



        • It could be any number of things, but the most common mistakes are leaving out a tag bracket or quote missing for href, src, or alt text may be the issue. You should also verify the link itself.

      What is the difference between linking to an image, a website, and an email address?



        • To link an image, use  tags. You need specify the image in quotes using the source attribute, src in the opening tag. For hyperlinking, the anchor tag, , is used and the link is specified in the href attribute. Text to be hyperlinked should be placed between the anchor tags. Little known fact: href stands for “hypertext reference.” When linking to an email, the href specification will be “mailto:send@here.com.” See examples below:
      Skilledup
      Email Me

      How do you make comments without text being picked up by the browser?



        • Comments are used to explain and clarify code or to prevent code from being recognized by the browser. Comments start with “*“.