37 Replies - 8296 Views - Last Post: 21 June 2011 - 08:49 AM
#1
HTML 5 Specifications & Implementations Officially Released
Posted 08 July 2009 - 07:51 AM
Detailed specifications here.
Replies To: HTML 5 Specifications & Implementations Officially Released
#2
Re: HTML 5 Specifications & Implementations Officially Released
Posted 08 July 2009 - 09:42 AM
Actually this is good news, now all we need is better browser support and the world will be a better place.
#3
Re: HTML 5 Specifications & Implementations Officially Released
Posted 08 July 2009 - 07:23 PM
#4
Re: HTML 5 Specifications & Implementations Officially Released
Posted 08 July 2009 - 11:08 PM
#5
Re: HTML 5 Specifications & Implementations Officially Released
Posted 08 July 2009 - 11:12 PM
#6
Re: HTML 5 Specifications & Implementations Officially Released
Posted 09 July 2009 - 02:32 AM
#7
Re: HTML 5 Specifications & Implementations Officially Released
Posted 09 July 2009 - 06:59 AM
Leave the design & layout to CSS you won't have these issues since the browser that don't support the DTD will default into quirks mode and they don't reap the benefits of the page the way it was intended to look.
Of course CSS isn't 100% supported by older browsers either. I actually dropped support all together for IE6 - as Microsoft is in the process of doing the same since IE8 is official now.
#8
Re: HTML 5 Specifications & Implementations Officially Released
Posted 09 July 2009 - 07:01 AM
#9
Re: HTML 5 Specifications & Implementations Officially Released
Posted 09 July 2009 - 08:17 AM
Nykc, on 9 Jul, 2009 - 07:59 AM, said:
Dude, you totally missed the memo!
Quote
2009-07-02: Today the Director announces that when the XHTML 2 Working Group charter expires as scheduled at the end of 2009, the charter will not be renewed. By doing so, and by increasing resources in the HTML Working Group, W3C hopes to accelerate the progress of HTML 5 and clarify W3C's position regarding the future of HTML. A FAQ answers questions about the future of deliverables of the XHTML 2 Working Group, and the status of various discussions related to HTML. Learn more about the HTML Activity.
-- http://www.w3.org/News/2009#item119
I agree, however. XML is ubiquitous. However, so is writing crappy HTML. Worse, and more to blame, browsers ( IE *cough* ) that support the crap. You see a lot of XHTML transitional, but strict is depressingly rare. To some extent, XHTML is an adoption failure. Even those that claim compliance often break it anyway. The HTML 5 spec does most of what XHTML intended. Maybe now it will stick. Well, if any browser bothers to comply to it.
#10
Re: HTML 5 Specifications & Implementations Officially Released
Posted 09 July 2009 - 09:00 AM
Son of a......
Thanks for the heads up though lol.
That's the thing - are the browsers going to comply? Or are we going to have to write hacks for every fricking browser (hint hint IE)
edit - here is a nice quick reference guide of the new markup.
http://www.veign.com...html5-guide.php
This post has been edited by Nykc: 09 July 2009 - 09:38 AM
#11
Re: HTML 5 Specifications & Implementations Officially Released
Posted 09 July 2009 - 11:11 AM
#12
Re: HTML 5 Specifications & Implementations Officially Released
Posted 09 July 2009 - 12:53 PM
<li></li>
<br />
<img />
This is the W3C we are talking about, I don't think they would encourage us to start adapting to XHTML standards and then strip all ideas to resort to the failure that was known as Netscape 4 & IE 5/6
#13
Re: HTML 5 Specifications & Implementations Officially Released
Posted 09 July 2009 - 12:54 PM
This post has been edited by MageUK: 09 July 2009 - 12:55 PM
#14
Re: HTML 5 Specifications & Implementations Officially Released
Posted 10 July 2009 - 10:21 AM
Why does Internet Explorer have to dick up the entire world wide web? Seriously - after 8 years of developing websites I have come to the conclusion IE needs to just fold as a browser. Let the banks and governments use that shitty browser all they want, but keep John Q. Public away.
So just for shits and giggles I was looking up some references on the new <canvas> tag. Came across a neat little tutorial and decided to give it a shot. This code has been successfully tested and executed in:
Firefox 3.0.11
Safari 4
Chrome
Opera 9
IE 8
Anyone wanna guess the only browser this code did not render in?
<html>
<head>
<title>Rectangles Using HTML 5 Canvas Tag</title>
<script type="application/x-javascript">
function draw(){
var canvas = document.getElementById('canvas');
if (canvas.getContext){
var ctx = canvas.getContext('2d');
ctx.fillStyle = "rgb(200,0,0)";
ctx.fillRect (10,10,55,50);
ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
ctx.fillRect (30, 30, 55, 50);
}
}
</script>
<style type="text/css">
canvas { border: 1px dashed black; }
</style>
</head>
<body onload="draw();">
<canvas id="canvas" width="150" height="150"></canvas>
</body>
</html>
</rant>
This post has been edited by Nykc: 10 July 2009 - 10:22 AM
#15
Re: HTML 5 Specifications & Implementations Officially Released
Posted 10 July 2009 - 10:25 AM
|
|

New Topic/Question
Reply



MultiQuote








|