HTML (Hypertext markup language) is used to build web pages, which are accessed across internet, it defines the structure/skeleton of webpage content using different tags, ex: <h1>Heading1</h1> . Each tag represent a structure, which usually has opening and closing tags as above example, though there are few exceptions,which are self closing. ex: <br/> Below is the sample HTML structure. <html> <- root html tag <head> <- head tag has meta,title,style and script etc. tags <title>Title</title> </head> <body> <- actual page content goes inside <h1>Header</h1> <body> </html> Let's understand some basic HTML tags. Refer here for examples Below are the sample html problems to start with. ...