HTML

 1. HEADING, SUBHEADING, TABLE AND LINK


<!DOCTYPE html>

<html>


<body>


<h1>P.B. Advanced Tutorial Centre</h1>


<p>P.B. Advanced Tutorial Centre is a centre which provides computer and education learning for all the types of students.</p>


<p align=centre><img src="C:\Users\8.1\Desktop\imagename.jpg" width=50% height=50%></p>



<caption><h2>Computer Course Details & Fees Details</h2></caption>


<table>

<style>

table, th, td {

  border: 1px solid black;

  border-collapse: collapse;

}

</style>

<tr>

<th> Course </th>

<th> Fees </th>

<th> 30 % Off </th>

<th> 30% Fees </th>

<th> 40% Off </th>

<th> 40% Fees </th>

<th> 50% Off </th>

<th> 50% Fees </th>

</tr>


<tr>

<td><b>ADCA</b></td>

<td>11000</td>

<td>3300</td>

<td>7700</td>

<td>4400</td>

<td>6600</td>

<td>5500</td>

<td>5500</td>

</tr>


<tr>

<td>PGDCA</td>

<td>12000</td>

<td>3600</td>

<td>8400</td>

<td>4800</td>

<td>7200</td>

<td>6000</td>

<td>6000</td>

</tr>


<tr>

<td>PDCAA</td>

<td>14400</td>

<td>4320</td>

<td>10080</td>

<td>5760</td>

<td>8640</td>

<td>7200</td>

<td>7200</td>

</tr>

</table>



<H2><Left>CONTACT: 1234567890 (PODMESWAR BORA)</Left></H2>


<a href=http://www.nbceindia.in>Official Website</a>  


<br>

<a href=http://podmeswarbooks.blogspot.com>Centre Website</a> 

</br>


</body>      

</html>





2. Audio Insert in Html

<!DOCTYPE html>
<html>
<body>

<audio controls>
  <source src="C:\Users\8.1\Music\Medieval-battle-war-horn-sound-effect.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>

</body>
</html>


3. Video Insert in HTML

<!DOCTYPE html> 
<html> 
<body> 

<video width="400" controls>
  <source src="C:\Users\8.1\Desktop\test.mp4" type="video/mp4">
</video>


</body> 
</html>


4. Simple Forms

<!DOCTYPE html>
<html>
<body>

<h2>HTML Forms</h2>

<form action="/action_page.php">
  <label for="fname">First name:</label><br>
  <input type="text" id="fname" name="fname" value="John"><br>
  <label for="lname">Last name:</label><br>
  <input type="text" id="lname" name="lname" value="Doe"><br><br>
  <input type="submit" value="Submit">
</form> 

<p>If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".</p>

</body>
</html>


5. Simple Table

<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>
</head>

<body>

<h2>Table With Border</h2>

<p>Use the CSS border property to add a border to the table.</p>

<table style="width:100%">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
  <tr>
    <td>John</td>
    <td>Doe</td>
    <td>80</td>
  </tr>
</table>

</body>
</html>








updating more later........