Posts

Source Code

  My first HTML source code.... <!DOCTYPE html> <!--This is a comment--> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <meta http-equiv="X-UA-Compatible" content="ie=edge">     <meta name="description" content="This is description">     <meta name="keywords" content="html, html tutorials, web development">     <meta name="robots" content="INDEX, FOLLOW">     <!-- This is how you include external css -->     <link rel="stylesheet" href="shubhra.css">     <!-- This is how you include external JavaScript -->     <script src="shubhra.js"></script>     <!-- This is the title of my webpage  -->     <title>SHUBHRANIL SAHA</title> </head> <body>...