sMobile ? "width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0" : "width=1100"' name='viewport'/> android xda: html code music
Showing posts with label html code music. Show all posts
Showing posts with label html code music. Show all posts

Thursday, 13 March 2014

html code


HTML Music Codes

 

<audio src="/music/good_enough.mp3" controls>   
    <embed
    src="/music/good_enough.mp3"
    width="180"
    height="90"
    loop="false"
    autostart="false" />
</audio>

Result



HTML Video Codes

<video src="/video/pass-countdown.ogg" width="150px" height="75px" controls>
<p>If you are reading this, it is because your browser does not support the 'video' element. Try using the 'object' element listed further down the page.</p>
</video>



HTML Picture Codes

<img src="http://www.quackit.com/pix/milford_sound/milford_sound_t.jpg" style="max-width:100%" alt="Milford Sound in New Zealand" />



HTML Code Tables

 <table border="1" style="width:200px;">
    <tr>
        <td>Cell 1</td>
        <td>Cell 2</td>
    </tr>
    <tr>
        <td>Cell 3</td>
        <td>Cell 4</td>
    </tr>
</table>

code html
Cell 1 Cell 2
Cell 3 Cell 4