How to make a simple HTML project
Firstly, HTML is Hyper Text Markup Language that allows us to crate webpages.
And a important point to remember you can even type it in UPPERCASE or lowercase.
It should be typed in NotePad, WYSIWYG or Notpad++
Lets start with the first code, <HTML>
Then type <body>
Then type anything you want
Then end with </body> then </html>
Like this:
<html>
<body>
WYSIWYG which stands for What You See Is What You Get
</body>
</html>
Now click on save and save it as
My_new_project_of_html.html
Remember to save it as .html not .txt
Now, open the file by double clicking on the file, It will open in a web browser
The image would look like this
You can get to know more about HTML in next blogs
Comments