YO ART Inc HTML5 CSS3 and Javascript Teaching Helper Browser App
Created by: Tommy Carl Taylor contact by Email: codingyoart@gmail.com
Input Your HTML5 CSS3 and Javascript Code:
See Result »
<body> <div id="page-wrap"> <header><div class="inside"> <h1>Play Audio Synth</h1> <p>We're going to use HTML5 here, no Flash. We'll need an audio element with both MP3 (WebKit, IE) and OGG (Firefox, Opera).</p> <p>We're using jQuery in this demo to make selecting things and events easier, but the .play() function is native.</p> </div></header> <center> <div> <audio controls preload="auto"> <source src="audio/1.mp3" controls></source> Your browser isn't invited for super fun time. </audio> <br /> <audio controls preload="auto"> <source src="audio/2.mp3" controls></source> Your browser isn't invited for super fun time. </audio> <br /> <audio controls preload="auto"> <source src="audio/3.mp3" controls></source> Your browser isn't invited for super fun time. </audio> <br /> <audio controls preload="auto"> <source src="audio/4.mp3" controls></source> Your browser isn't invited for super fun time. </audio> <br /> <audio controls preload="auto"> <source src="audio/5.mp3" controls></source> Your browser isn't invited for super fun time. </audio> </div> </center> </div> </body>
Result: