Posts

New post

Html Form

 Html Simple form <form action="/action.php" method="post"> Name: <input name="name" type="text" /> <br /> Age: <input max="90" min="1" name="age" step="1" type="number" value="18" /> <br /> <select name="gender"> <option selected="selected" value="male">Male</option> <option value="female">Female</option> </select><br /> <input checked="checked" name="newsletter" type="radio" value="daily" /> Daily <input name="newsletter" type="radio" value="weekly" /> Weekly<br /> <textarea cols="20" name="comments" rows="5">Comment</textarea><br /> <label><input name="terms" type="checkbox" value="tandc" />Accept te...

Html Table Code

Html  Table Structure <table> <caption>Demo Table</caption> <thead> <tr> <th>Column1</th> <th colspan="2">Column2</th> </tr> </thead> <tbody> <tr> <td>Data1</td> <td>Data2</td> <td>Data2</td> </tr> <tr> <td>Data1</td> <td>Data2</td> <td>Data2</td> </tr> </tbody> <tfoot> <tr> <td>&nbsp;</td> <td>Data</td> <td>Data</td> </tr> </tfoot> </table>

Html input types

Image
Use these input types and keep following us <input type="button"> <input type="checkbox"> <input type="color"> <input type="date"> <input type="datetime-local"> <input type="email"> <input type="file"> <input type="hidden"> <input type="image"> <input type="month"> <input type="number"> <input type="password"> <input type="radio"> <input type="range"> <input type="reset"> <input type="search"> <input type="submit"> <input type="tel"> <input type="text"> <input type="time"> <input type="url"> <input type="week">

HTML video tag

 HTML Video Tag <video width="480" height="320" controls> <source src="demo_move.mp4" type="video/mp4"> Your browser does not support the video tag. </video> Copy and enjoy  your code:

HTML Audio Tag

Audio Tag   <audio controls> <source src="demo.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio>

HTML headings

H1 Tag  <h1>Heading 1</h1> H2 Tag <h2>Heading 2</h2> H3 Tag <h3>Heading 3</h3> H4 Tag <h4>Heading 4</h4> H5 Tag <h5>Heading 5</h5> H6 Tag <h6>Heading 6</h6>