Posts

Showing posts from 2021

HTML

Image
The article written by Sagar Jaybhay. In this series we can understand HTML tags and other useful information. <!DOCTYPE html> Initial line in html file which tells the browser it uses Html 5.  <!DOCTYPE html> <html> <head> <title>Hello Sagar Jaybhay</title> </head> <body> </body> </html> Html Title by Sagar Jaybhay Most of tags in Html have closing tags but some of don't have closing tags for example img tag . <img src="" alt=""> Why don't some elements have closing tag because they don't contain any child elements in it . Hello World html Code for above example is below <!DOCTYPE html> <html> <head> <title>Hello Sagar Jaybhay</title> </head> <body> <h2>Hello World</h2> <p>Hello Guys</p> <img src="./images/q.jpg" alt="Demo images"> </body> </html> CSS When we want to apply style we

Test Post from Sagar Jaybhay

Test Post from Sagar Jaybhay https://sagarjaybhay.net