Go Back   Site Owners Forums - Webmaster Forums > Web Programming > Programming General > HTML / DHTML

Notices


Reply
 
Thread Tools Rate Thread Display Modes
Old 12-12-2011, 01:45 AM   #1
albertmorrison3
Registered User
 
Join Date: Dec 2011
Posts: 19
BasicDifference between HTML 5 and HTML 4

HTML4 became a W3C Recommendation in 1997. While it continues to serve as a rough guide to many of the core features of HTML, it does not provide enough information to build implementations that interoperate with each other and, more importantly, with a critical mass of deployed content. HTML has been in continuous evolution since it was introduced to the Internet in the early 1990's. Some features were introduced in specifications; others were introduced in software releases. The same goes for XHTML1, which defines an XML serialization for HTML4, and DOM Level 2 HTML, which defines JavaScript APIs for both HTML and XHTML.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
albertmorrison3 is offline   Reply With Quote

Old 12-12-2011, 03:16 AM   #2
janejackson
Registered User
 
Join Date: Jul 2011
Posts: 118
HTML5 is the latest version of HTML and XHTML. It comes up with a number of features like drag and drop, multimedia, video playback, form control etc.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
janejackson is offline   Reply With Quote
Old 12-12-2011, 04:30 AM   #3
born_star16
Registered User
 
Join Date: Feb 2011
Posts: 147
The internet has changed a lot since HTML 4.01 became a standard in 1999. Today, some elements in HTML 4.01 are obsolete, never used, or not used the way they were intended to. These elements are deleted or re-written in HTML5. To better handle today's internet use, HTML5 also includes new elements for better structure, drawing, media content, and better form handling.

Read More
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
born_star16 is offline   Reply With Quote
Old 12-13-2011, 10:43 PM   #4
smithzenri
Registered User
 
Join Date: Dec 2011
Posts: 2
->HTML4 has some longer tag code than HTML5. HTML5 is easy to code tag because no additional information needed to insert it.
->Audio and Video are not supported in HTML4, but in HTML5 has tag for Audio and Video like <audio>source</audio>,<video>source</video>.
->HTML5 supports the database to store data. Like SQL Server.
->HTML5 supports the run javascript in a browser while HTML4 and another not supported it.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
smithzenri is offline   Reply With Quote
Old 12-23-2011, 03:41 AM   #5
Spoint_Vinil
Moderator
 
Join Date: Sep 2011
Location: INDIA
Posts: 250
lots of differences.visit w3schools for more info
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Spoint_Vinil is offline   Reply With Quote
Old 02-02-2012, 03:09 AM   #6
gladiolus
Registered User
 
Join Date: Feb 2012
Posts: 16
HTML Version 4.0 was published in Dec '97 by the W3C.. It offers three variations: Strict, in which deprecated elements are forbidden, Transitional, in which deprecated elements are allowed, Frameset, in which mostly only frame related elements are allowed..

And HTML5 is the latest revision of the HTML standard, including many new syntactical features and several APIs that support drawing, video, audio, etc..
gladiolus is offline   Reply With Quote
Old 02-28-2012, 11:13 PM   #7
ruixuan
Registered User
 
Join Date: Feb 2012
Posts: 98
HTML5 supports the run javascript in a browser while HTML4 and another not supported it
Fibroids Treatment
Uterine Fibroids
ruixuan is offline   Reply With Quote
Old 03-05-2012, 04:32 AM   #8
albertnewton
Registered User
 
Join Date: Mar 2012
Posts: 24
Really good information to get...
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
albertnewton is offline   Reply With Quote
Old 04-04-2012, 11:14 PM   #9
maxsamuel
Registered User
 
Join Date: Mar 2012
Posts: 88
HTML4 became a W3C Recommendation in 1997. While it continues to serve as a rough guide to many of the core features of HTML, it does not provide enough information to build implementations that interoperate with each other and, more importantly, with a critical mass of deployed content. The same goes for XHTML1, which defines an XML serialization for HTML4, and DOM Level 2 HTML, which defines JavaScript APIs for both HTML and XHTML.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
maxsamuel is offline   Reply With Quote
Old 04-05-2012, 05:15 AM   #10
alen12345
Registered User
 
Join Date: Oct 2011
Location: LDH
Posts: 225
HTML5 has several goals which differentiate it from HTML4.

The primary one is consistent, defined error handling. As you know, HTML purposely supports 'tag soup', or the ability to write malformed code and have it corrected into a valid document. The problem is that the rules for doing this aren't written down anywhere. When a new browser vendor wants to enter the market, they just have to test malformed documents in various browsers (especially IE) and reverse-engineer their error handling. If they don't, then many pages won't display correctly (estimates place roughly 90% of pages on the net as being at least somewhat malformed).

So, HTML5 is attempting to discover and codify this error handling, so that browser developers can all standardize and greatly reduce the time and money required to display things consistently. As well, long in the future after HTML has died as a document format, historians may still want to read our documents, and having a completely defined parsing algorithm will greatly aid this.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
alen12345 is offline   Reply With Quote
Old 07-16-2012, 02:43 AM   #11
jonemike
Registered User
 
Join Date: Jun 2012
Posts: 652
thanks for sharing important information about HTML 5 and HTML 4.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
jonemike is offline   Reply With Quote
Old 07-17-2012, 02:38 AM   #12
davikerkrish
Registered User
 
Join Date: Jul 2012
Posts: 111
HTML5 having the error handling features. This one is very useful for developrers. Browser can expose easy interfaces like calenders etc. So we no need to include js for this type of interface.
davikerkrish is offline   Reply With Quote
Old 11-12-2016, 12:08 AM   #13
phamdung
Registered User
 
Join Date: Oct 2016
Posts: 23
Thanks for sharing, all information i got in here is very helpful.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
phamdung is offline   Reply With Quote
Old 01-02-2017, 04:27 AM   #14
Nandu41
Registered User
 
Join Date: Sep 2016
Posts: 65
Nice information.Thank you for sharing!!
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Nandu41 is offline   Reply With Quote
Old 12-06-2017, 09:50 PM   #15
Aarti Singh
Registered User
 
Join Date: Apr 2017
Posts: 109
The main difference between XHTML and HTML4 is that all tags, once opened, must be closed.
Some of the tags that are removed from HTML5 or have different functionality in HTML5 as compared to HTML4. HTML4 contained an <applet> tag that was used for displaying applets in a web browser. However, in HTML5, this applet tag has been removed.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Aarti Singh is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
HTML Code Switching wryfhk22 Search Engine Optimization 5 06-25-2019 02:44 AM
any side effect of using HTML alt attribute? cianfie Programming General 3 02-26-2012 08:48 PM
Focusing on HTML and CSS charloskendall3 General Discussion 15 12-31-2011 10:09 PM
Make html only accessible from link wryfhk22 Programming General 2 12-15-2011 08:45 PM


All times are GMT -7. The time now is 01:13 PM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.