CREATING FIRST HTML WEBPAGE
Hello, Friends today we're going to build our first webpage in HTML. So let's get started To begin, open notepad and save the file with any name you want, as long as it ends with .html. Example : myFirstWebpage.html So we're all set to begin the key coding. As previously mentioned, every html document starts and ends with html element and everything else goes in between them. <html> </html> then after opening<html> tag we will add head element <html> <head> </head> </html> Inside the head element, we will include a title element to set the title of our web page you can give any name (website's name or name related to page) inside title element it will be shown in the browser's title bar. <html> <head> <title>My First Page</title> </head> </html> After that we will add body element <html> <head>