Introduction

In this article, I will explain how to create a website using html. HTML is a markup language, not a programming language. HTML stands for “Hyper Text Markup Language”. The most advanced version of HTML is HTML 5. 3D or animation applications can be created by using HTML 5. It is represented as tags<>. Using HTML, you can define headers, paragraphs, links, images, etc...
Requirements
Let us see how to create a simple web page using HTML.
Step 1
Create a new folder on your desktop and change the folder name to HTML, view the image.
Step 2
Open Sublime Text editor.
Click->File->New File
Click->File->Save as->Desktop->HTML->index.html
Click, save.
Step 3
In this section, you will create a simple web page using background images, links and some text. You just copy and paste the code into the editor and save it.
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <title>www.vijayakumar.com</title>
  5. </head>
  6. <font color="#A6ACAF" size="5">
  7. <marquee><b><i>THANKS FOR WATCHING</i></b></marquee>
  8. </font>
  9. <body background="C:\Users\vijayakumar\Pictures\photo29.jpg" link="white" alink="blue" vlink="#F8F8FF" > //background image
  10. <br />
  11. <font face="Lato" size="5"><img src="C:\Users\vijayakumar\Pictures\logo.jpg" height="50px" width="100px"></font>//logo image
  12. <font face="cinzel" size="4">
  13. <a href="#">HOME</a>
  14. &n bsp; &nbs p;
  15. <a href="#">VIDEOS</a>
  16. <a href="#">ARTICLES</a>
  17. <a href="#">BLOG</a>
  18. <a href="#">ABOUT US</a>
  19. </font>
  20. <br /><br /><br /><br />
  21. <br />
  22. <br />
  23. <h1 align="center">
  24. <font color="#F0B27A" size="9" >
  25. WELCOME TO WEB PAGE<br/>
  26. </font>
  27. SIMPLE WEB PAGE
  28. </h1>
  29. <h3 align="center">
  30. <font face="Lato" color="red" size="3">
  31. Onyly Using Simple HTML Code
  32. </font>
  33. <br /><br /><br /><br /><br /><br/><br/><br/><br/>
  34. <hr width="1500px">
  35. <center>
  36. <b>
  37. <font face="cinzel" size="4">
  38. <a href ="#">About Us|
  39. <a href ="#">Contact Us |
  40. <a href ="#"> Privacy Policy |
  41. <a href ="#"> Terms |
  42. <a href ="#">Media Kit |
  43. <a href ="#"> Sitemap |
  44. <a href ="#"> Report a Bug |
  45. <a href ="#"> FAQ Partners</a><br/>
  46. <a href ="#">C# Tutorials|
  47. <a href ="#"> Common Interview Questions|
  48. <a href ="#"> Stories |
  49. <a href ="#">Consultants |
  50. <a href ="#"> Ideas |
  51. <a href ="#"> Certifications
  52. </a><br/><br/>
  53. <font color="#FF0000">all@copyrights 2020</font>
  54. </font>
  55. </b>
  56. </center>
  57. </body>
  58. </html>
Step 4
You will see the output on the web browser. I have uploaded zip file in source code and background image and logo image.
Output

Conclusion

I hope this article is useful to you. We have created a simple webpage. Thanks for reading.