Posts

Showing posts from July, 2022

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>...

web development tutorial #5 for visually impaired people. taking a look at headings and paragraph source code

hi i am sharing you the source code of web development tutorial for blind #5 access the video from here   contact me on telegram to join channel for other resources. join via this link <!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 headings and paragraph</title> </head> <body>     <h1>this is heading 1</h1>     <h2>this is heading 2</h2>     <h3>this is heading 3</h3>     <h4>this is heading 4</h4>     <h5>this is heading 5</h5>     <h6>this is heading 6</h6>     <p>this is a paragraph</p>     <p>Lorem ipsum dolor sit amet consectetur adip...

meta tags source code

hi I am sharing the source code of web development #4 with you its for visually impaired people. access the video by clicking here! get this! <!DOCTYPE html> <html> <head> <title> hello today we will be discussing about meta tags in html</title> <meta charset="utf-8"> <meta name="description" content="this is an html page which describes about meta tags in html"> <meta name="keywords" content="html, css, js, php, python"> </head> <body> hello world! </body> </html>

basic structure of html source code for visually impaired people web development tutorial #3

hi i am sharing you the source code of html  this is an over view of html basic structure hello world! to get the tutorial video you can visit non visual tech on YouTube. go to my channel by clicking here get the code  <!DOCTYPE html> <html> <head> <title> this is an over view of html basic structure </title> </head> <body> hello world! </body> </html>