- <html>
- <!DOCTYPE HTML>
- <head>
- <title>Mohammad Luin</title>
- </head>
- <body bgcolor="#FFFFFF">
- <h1><font color="#000099">Heading one with color Blue</font></h1>
- <h2>Heading two</h2>
- <h3>Heading three</h3>
- <h4>Heading four</h4>
- <h5>Heading five</h5>
- <h6>Heading six</h6>
- <hr width="700px"/>
- <!--Writing article with a Heading and Section including Aside text-->
- <article>
- <h3 align="center">WELCOME!</h3><br/>
- <section>
- <h4 align="center">This is a section Head</h4><br/>
- <p align="center">The is a test article for the test Heading</p><br/>
- </section>
- <aside>
- <p>This is a aside text</p>
- </aside>
- </article>
- <!--Ordering list-->
- <ol>
- <li>Black</li>
- <li>Blue</li>
- <li>Green</li>
- </ol>
- <!--UnOrdering list-->
- <ul>
- <li>Black</li>
- <li>Blue</li>
- <li>Green</li>
- </ul>
- <p align="center">This text is aligned to center<br/><hr width="100%" align="center"/></p>
- <!--Different Text Format-->
- <p><b>This is a bold text example</b></p>
- <p><big>This is a big text example</big></p>
- <p><i>This is an italic text example</i></p>
- <p><small> This is a small text example</small></p>
- <p><sub>This is a subscripted text example</sub></p>
- <p><sup>This is a superscripted text example</sup></p>
- <p><ins>This is an intserted text example</ins></p>
- <p><del>This is a deleted text example</del></p>
- <!--Image Inserting Process-->
- <img src="neg_fox.jpg" hight="100px" width="100px" border="1px black" alt=""/>
- <img src="image.svg" alt="" hight="300"><br/>
- <svg width="2000" hight="2000">
- <circle cx="80" cy"80" r="50" fill="green"/>
- <rect width="300" hight="100" x="20" y="20" fill="yellow"/>
- </svg><br/>
- <svg width="500" hight="500">
- <path d="M0 0 L0 100 L100 100 L100 0 Z"/>
- </svg>
- <!--Link Inserting Option-->
- <a href="http://mluin.blogspot.com" target="_blank">mLuin's Tech Knowledge</a>
- <!--Table creation-->
- <table align="center" border="3">
- <tr>
- <td bgcolor="red">RED</td>
- <td bgcolor="yellow">YELLOW</td>
- <td bgcolor="green">GREEN</td>
- </tr>
- <tr>
- <td>Stop</td>
- <td colspan="2">Wait & Go</td>
- </tr>
- </table>
- <!--Form Creation-->
- <form>
- <lable>Your name</lable>
- <input id="user" name="username" type="text"/>
- </form><br/>
- <!--Hint-->
- <form>
- <lable for="email">Your email address</lable>
- <input type="text" name="email" placeholder="example@gmail.com"/>
- </form><br/>
- <!--Autofocus-->
- <form>
- <lable for="email">Your email address</lable>
- <input type="text" name="email" autofocus/>
- </form><br/>
- <!--Sample form-->
- <form autocomplete="off">
- <lable for="email">Your email address:</lable>
- <input name="Email" type="text" required/>
- <input type="submit" value="Submit"/>
- </form>
- <form action="http://mluin.blogspot.com" method="GET/POST">
- <!--Input type 1(General Password)-->
- <input type="text" name="username"/>Username<br/>
- <input type="password" name="password"/>Password<br/>
- <!--Input type 2(Radio)-->
- <input type="radio" name="gender" value="male"/>Male<br/>
- <input type="radio" name="gender" value="female"/>Female<br/>
- <!--Input type 3(Check box)-->
- <input type="checkbox" name="gender" value="1"/>Male<br/>
- <input type="checkbox" name="gender" value="2"/>Female<br/>
- <!--Submit option-->
- <input type="submit" value="Submit"/>
- </form>
- <!--Audio file insert-->
- <audio src="image.mp3" controls>
- Your browser doesnt support audio files
- </audio>
- <audio controls autoplay loop>
- <source src="audio.mp3" type="audio/mpeg">
- <source src="audio.ogg" type="audio/ogg">
- Audio elements not supported by your browser
- </audio><br/>
- <!--Video file insert-->
- <video controls autoplay loop>
- <source src="video.mp4" type="video/mpeg">
- <source src="video.ogg" type="video/ogg">
- Audio elements not supported by your browser
- </video>
- <br/>
- <!--Inserting Progress bar-->
- <progress min="0" max="100" value="35"></progress><br/>
- <!--Insert Search Box-->
- <input id="mysearch" name="searchitem" type="search"/><br/>
- <!--Options In Search Box-->
- <form>
- <input id="car" type="text" list="colors"/>
- <datalist id="colors">
- <option value="RED">
- <option value="YELLOW">
- <option value="GREEN">
- </datalist>
- </form></br>
- <svg width="100" hight="100">
- <line x1="50" y1="0" x2=>
- </body>
- </html>
Notice:
To see the effect or meaning of each line of these codes copy codes from 1 to 164 and paste it in a notepad and save the file as .html file, then open the file in your browser.
0 comments:
Post a Comment