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>© non visual tech <</p> </body> </html>