HTML Tutorials

Features of HTML5 0

Features of HTML5

Program 1 <html> <body> <div> <p>This is some text</p> <ul> <li>tea</li> <li>milk</li> <li>coffee</li> </ul> <p>i am learning HTML.<span>It is used to create web pages</span></p> </div> <audio controls> <source src=”C:\Users\Lenovo\\Downloads\\sample_audio.mp3″> </audio> <figure> <img src=”C:\Users\Lenovo\Downloads\bird.jpg”> <figcaption><center>Bird</center></figcaption>...

HTML Meta and Video Tag 0

HTML Meta and Video Tag

Program 1 <html> <head> <meta charset=”UTF-8″> <meta name=”author” content=”John”> <meta name=”keyword” content=”HTML”> </head> <body> <video with=”200″ height=”200″ controls> <source src=”C:\\Users\\Lenovo\\Downloads\\sample.mp4″> </video> </body> </html>  

HTML Semantic Elements 0

HTML Semantic Elements

Program 1 <html> <body> <!–<header> <h2>Welcome</h2> <p>This is my Blog</p> </header> <h2>THEME PARK</h2> <p>Me and my family visited this theme park</p> <aside> <h4>ABOUT THEME PARK</h4> <p>It has some great attractions like playing certain games,events...

HTML iframe Tag 0

HTML iframe Tag

Program 1 <html> <body> <iframe src=”example.html” name=”frame_link” width=”500″ height=”500″></iframe> <a href=”https://www.smilefoundationindia.org/” target=”frame_link”>Click</a> </body> </html>      

HTML Forms 0

HTML Forms

Program 1 <html> <body> <fieldset> <legend>SignUp</legend> <form action=”http://www.google.com”> <label>Name:</label> <input type=”text” name=”name” id=”name” placeholder=”Enter name” required> <br> <label>Password:</label> <input type=”password” name=”password” required> <br> <label>Gender:</label> Male:<input type=”radio” name=”gender” value=”male”> Female:<input type=”radio” name=”gender” value=”female”> <br> <label>Hobbies:</label>...

HTML Table colspan Attribute 0

HTML Table colspan Attribute

Program 1 <html> <body> <table border=”2″> <tr> <th colspan=”2″>Name</th> <th>Age</th> <th colspan=”2″>Course</th> </tr> <tr> <td>Ninja</td> <td>1</td> <td>20</td> <td>C++</td> <td>Python</td> </tr> <tr> <td>Ninja</td> <td>2</td> <td>31</td> <td colspan=”2″>Java</td> </tr> <tr> <td>Ninja</td> <td>3</td> <td>29</td> <td>Javascript</td> <td>R</td> </tr>...

HTML Table rowspan Attribute 0

HTML Table rowspan Attribute

Program 1 <html> <body> <table border=”2″> <tr> <th>Task</th> <th>Status</th> <th>Assigned To</th> </tr> <tr> <td rowspan=”2″>Development</td> <td>In Progress</td> <td>John Doe</td> </tr> <tr> <td>Review</td> <td>Jane Doe</td> </tr> </table> </body> </html>  

HTML Table Tag 0

HTML Table Tag

Program 1 <html> <body> <table border=”2″> <tr> <th>Name</th> <th>Age</th> </tr> <tr> <td>John</td> <td>27</td> </tr> <tr> <td>rahul</td> <td>30</td> </tr> </table> </body> </html>  

HTML Link Tag 0

HTML Link Tag

Program 1 <html> <head> <style> /*ul{ background-color: aqua; width:500px; } ul li{ background-color: aquamarine; padding:20px; width:400px; /* list-style-position: inside; list-style-type:none; }*/ ul li{ list-style-type:none; } ul{ margin:0; padding:0; } </style> </head> <body> <ul> <li>Tea</li>...

Lists in HTML 0

Lists in HTML

Program 1 <html> <head> <title>My Website</title> </head> <body> <h1>Welcome</h1> <h2>Welcome</h2> <h3>Welcome</h3> <h4>Welcome</h4> <h5>Welcome</h5> <h6>Welcome</h6> <p><b><u><i>This is my website</i></u></b></p> <p>H<sub>2</sub>O</p> <p>a<sup>3</sup></p> <p>5&lt;10</p> <p>&gt;</p> <p>&quot;Where there is a will there is a way &quot;</p> <p>John&apos;s homework...