Table of contents
•Introduction •The Hello World Syntax •Conclusion
Introduction
Creating my first webpage was quite easy for me because I already no the basics, We've been learning about the structure of an HTML document, tags etc. Let us use the knowledge to create our first web page which will show the text “Hello World!” on the screen.
The Helloworld Syntax
<!DOCTYPE Html>
< html lang="en">
< head>
< meta charset="UTF-8">
< title>My First Webpage< /title>
< /head>
< body>
Hello World!
< /body>
< /html>
Type this on your text editor and you will get:
Conclusion
This is how to create a hello world! webpage. Stay tuned to my blog for more!