- 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.
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?
What is the difference between and ?
- A
is a generic container element for grouping and styling, whereas acreates divisions within a web page and should be used within thetag. The use ofandare no longer popular and are now being replaced with the more flexible, which has become popular for embedding foreign elements (ie. Youtube videos) into a page.
What is the syntax difference between a bulleted list and numbered list?
- Bulleted
lists use the
tag, which stands for “unordered,” whereasis 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, oralttext 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,srcin the opening tag. For hyperlinking, the anchor tag,, is used and the link is specified in thehrefattribute. Text to be hyperlinked should be placed between the anchor tags. Little known fact:hrefstands for “hypertext reference.” When linking to an email, thehrefspecification 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 “
*“.
Subscribe to:
Posts (Atom)