HTML and CSS

HTML


<!DOCTYPE html><!--This defines the document to HTML5.-->
<html><!--First tag to be included-->
<head><!--After this is included special code to describe the page or code to add functions and special instructions for the web page-->
    <title>This is the title of your page</title>
</head><body>         All the web content goes here,             after </body> and before </body>
</body> </html>

Basic Tags