GreX Tutorial : Hello World in HTML
HELLO WORLD IN HTML Actually, Hello World in programming refers to the first ever project you do when learning a programming language. Now you can understand some memes. LoL! Let's start: <!DOCTYPE html> <html> <head> <title>First Page Title</title> </head> <body> <p> Hello World!</p> </body> </html> Let me explain what is happening here then next I will tell you how you can create yours. Code Explained: So, the document starts with THE HTML5 DECLARATION that we considered previously. i.e <!DOCTYPE html> Then, the next is the html tags. If you look very carefully, you would notice that every other tag goes into these two tags: <html> </html> It signifies the beginning and ending of the HTML code. It encloses other tags. Now, every HTML document is divided into t...