• IMPORTANT: Welcome to the re-opening of GameRebels! We are excited to be back and hope everyone has had a great time away. Everyone is welcome!

HTML4 or HTML5?

Hugop

Active Member
Joined
Apr 24, 2015
Messages
109
Reaction score
5
What do you use the most?

HTML5 is like HTML4 without the head tag, some divs (header, footer, ...) as tag and more.
We use less characters on HTML5 than HTML4

Which one do you use the most and which one do you prefer?
 

Jordan

Founder
Senior Admin
Joined
Aug 12, 2012
Messages
1,169
Reaction score
341
Well, HTML5 is becoming more and more of the standard to use. Might as well get practice into using it and start using it as your own standard to. I tried to be up to date with all of my coding.
 

Hugop

Active Member
Joined
Apr 24, 2015
Messages
109
Reaction score
5
So long as we know XTML, we dont have to worry a lot about HTML, right? ;)
 

AndroidOS

Well-Known Member
Joined
Mar 31, 2012
Messages
55
Reaction score
5
HTML5 where possible, as it's the new standard. There's also a lot of cool stuff you can do with HTML5 that you can't do with HTML4 which makes it infinitely better. :p
 

Hugop

Active Member
Joined
Apr 24, 2015
Messages
109
Reaction score
5
HTML5 where possible, as it's the new standard. There's also a lot of cool stuff you can do with HTML5 that you can't do with HTML4 which makes it infinitely better. :p
Oh I wasnt aware of this. Which kind of stuff?
 

AndroidOS

Well-Known Member
Joined
Mar 31, 2012
Messages
55
Reaction score
5
Oh I wasnt aware of this. Which kind of stuff?

There's lots of examples, but I'll go through some of the cooler ones:

  • HTML5 has audio support built in, so we can embed audio into our site using the
    Code:
    <audio>
    element.
  • HTML5 also has video support built in using, you guessed it,
    Code:
    <video>
  • You can include regular expressions in forms for validation if you want, using the
    Code:
    pattern
    attribute
  • You can create slider inputs using the
    Code:
    range
    type
  • And lots more
HTML5 with CSS3 really does make for an awesome combination.
 

Hugop

Active Member
Joined
Apr 24, 2015
Messages
109
Reaction score
5
Oh right! HTML5 is the new flash player :D
 

Thomasss

Active Member
Joined
Jun 2, 2015
Messages
22
Reaction score
13
HTML5 hands down. It's the new standard and it can be used to make some pretty neat websites. I'm kinda excited to see what they have planned for HTML6. Lol
 

Sylar

General Manager
Joined
Feb 28, 2012
Messages
431
Reaction score
46
HTML5 is what you should be using. As a web standard, there should never be any reason to use a previous version of a coding language once the new version is released.
 

Referal

Well-Known Member
Joined
Mar 22, 2017
Messages
661
Reaction score
58
I would say HTML5 as more people use But personally I do use HTML4
 

overcast

Active Member
Joined
Jun 8, 2017
Messages
518
Reaction score
19
I think we have enough journey ahead with HTML 5 standards. We managed to get rid of the flash with the HTML 5. I think with more efforts we can get rid of other bad third party standards. So with that we don't need old HTML 4 standard anymore. Though it'd be interesting to see how the old browsers may still support it. I think most of us are now in the HTML 5 for sure.
 
Top