some basics key points of HTML
Basics of
HTML language.
HTML is frontend development coding language, its used for making web pages and creating web sites. HTML is world wide use language to creating to amazing web sites. We see on web browsers front pages web sites front pages this pages making by HTML & CSS .
In HTML language
to making front pages we use TAGS, some basics tags given below with description.
v <! DOCTYPE html> :- specifies
this is an html 5 doc.
v <html> :- root of an html page.
v <head> :- contains page
metadata.
v <title> :- shinde Nikhil </title>
contains title.
v <body> :- the main body of page.
v <h1> :- this is heading tag.
v <p> :- this is paragraph tag.
NOTE:- When we use above tags <___>
content </__> this symbol is most important to use.
</__>
this is closing tag symbol.
Quick points.
HTML tag is
parent of head & body Tag most of html elements have opening & closing
tags with content in between some tags have
no content in between eg. <br> we can use inspect element / view page
source to edit html.
Comments in html
This is part of code that should not be parsed
<!__this is an HTML comment __>

Comments
Post a Comment