Html 5 Intro
Html 5 : Html 5 Comes with rich features than the html. It Provides more tags and api’s which makes it greater.
Html 5 DOCTYPE Declaration
The DOCTYPE declaration of html 5 is as
<!DOCTYPE html>
Html 5 Intro Basic Example
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> Content </body> </html>
Advertisements