Posts

media elements in html source code

get the source code  here we go! <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>media elements in html </title> </head> <body>     <video height="320px" width="240px" controls>         <source src="ultimate video on link.webm" type="video/webm">     </video>     <br>     <audio controls>         <source src="Pray - Anno Domini Beats.mp3" type="audio/mp3">     </audio>     <br>     <!-- <iframe width="560" height="315" src="https://www.youtube.com/embed/Ro44yVDhxzA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; ...

forms in html source code

hi I am sharing you the source code of forms in html. here we go! <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>description of form in html</title> </head> <body>     <form action="sql.php">         <fieldset> <legend>personal info </legend>             <label for="fname">enter your first name</label> <br>             <input type="text" name="fname" id="fname" required>             <br>             <label for="lname">enter your last name  </label>             <br>   ...

html tables source code

hi I am sharing you the source code of html tables so, here we go! <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>tables in html</title> </head> <body>     <table border="2px">         <caption>company name and their products</caption>         <thead>             <tr> <th>microsoft </th> <th>alphabets</th> <th>meta</th></tr>         </thead>         <tbody>             <tr><td>windows</td> <td>google </td> <td>facebook</td></tr>       ...

html elements and entities source code

hi I am sharing you the source code of web development tutorial #9 so, here we go! <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>elements in html</title> </head> <body>     <a href="#">link 1</a>     <a href="#">link 2</a>     <p>this is a paragraph </p>     <p> this is another paragraph</p>     <br>     <ul>         <li>inline element </li>         <li>block element </li>     </ul>     <br>     <p>&copy; non visual tech  &lt;</p> </body> </html> 

ultimate demonstration about links source code

 hi I am sharing you the source code of links video in my channel so, here we go! <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>ultimate demonstration about links</title> </head> <body>     <a href="https://www.microscopictech.blogspot.com">visit my website</a>     <br><br><br>     <a href="headings_paragraph.html" target="_blank">visit another page</a>     <br> <a href="#heading">visit heading</a> <br> <a href="mailto:mr.pawittra@gmail.com">mail me</a> <br> <a href=""><img src="Screenshot (2).png" alt="click me"></a> <br...

inserting image in html source code

this is the source code for my web development tutorial #7 so, here we go! <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>overview of images in html</title> </head> <body>     <img src="../Screenshot (2).png" alt="this is an image " height="200px" width="800px"> </body> </html>     

source code of list in html

today, I am sharing you the source code of list demonstrated in the video.  access the video here we go  <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>lists in html</title> </head> <body>     <ul type="square">         <li>mango</li>         <li>apple</li>         <li>banana</li>     </ul>     <ol type="I">         <li>html</li>         <li>css</li>         <li>javascript</li>     </ol>     <dl>         <dt>google</dt>...