HTML5
It's the way of the web. Most modern websites are moving to HTML5 for the backend code, it allows more to be done with our websites like transitions, animations, flash free videos etc and the current "HTML4 strict" that webydo uses is getting dated - it would be great to stay current

All Webydo websites are valid HTML5 sites.
It was specially designed to deliver rich content. The current version delivers everything from animation to graphics, music to movies, and can also be used to build complicated websites.
HTML5 is also cross-platform. It is designed to work whether you are using a PC, or a Tablet, a Smartphone, or a Smart TV.
4 comments
-
Info Needed commented
Question: Why does this code seem to be moving the cube outside of the box. I have tested on Wix and it does the same.
</body>
<div id="stage" style="width: 120px; height: 120px;">
<div id="spinner">
<div class="face1">Gourmet</div>
<div class="face2">Party</div>
<div class="face3">Festival</div>
<div class="face4">Fashion</div>
<div class="face5">Culture</div>
<div class="face6">Gala</div>
</div>
</div>
<body>
<style type="text/css">#spinner div {
position: absolute;
width: 240px;
height: 240px;
border: 1px solid #ccc;
background: rgba(31,205,221,0.8);
box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
text-align: center;
line-height: 120px;
font-size: 50px;
}#spinner .face1 { -webkit-transform: translateZ(60px);}
#spinner .face2 { -webkit-transform: rotateY(90deg) translateZ(60px);}
#spinner .face3 { -webkit-transform: rotateY(90deg) rotateX(90deg) translateZ(60px);}
#spinner .face4 { -webkit-transform: rotateY(180deg) rotateZ(90deg) translateZ(60px);}
#spinner .face5 { -webkit-transform: rotateY(-90deg) rotateZ(90deg) translateZ(60px);}
#spinner .face6 { -webkit-transform: rotateX(-90deg) translateZ(60px);}@-webkit-keyframes spincube {
from,to { }
16% { -webkit-transform: rotateY(-90deg); }
33% { -webkit-transform: rotateY(-90deg) rotateZ(90deg); }
50% { -webkit-transform: rotateY(180deg) rotateZ(90deg); }
66% { -webkit-transform: rotateY(90deg) rotateX(90deg); }
83% { -webkit-transform: rotateX(90deg); }
}#spinner {
-webkit-animation-name: spincube;
-webkit-animation-timing-function: ease-in-out;
-webkit-animation-iteration-count: infinite;
-webkit-animation-duration: 12s;
-webkit-transform-style: preserve-3d;
-webkit-transform-origin: 60px 60px 0;
} -
Anonymous commented
WIX already has it, facebook requires it. So market forces are driving this not standards.
-
Natalia commented
Go HTML5 ASAP. Please.
-
Michael S. commented
Already facebook generates HTML5 code (no longer suppoert HTML4) for thier social plugins, so the push has begun.