How can you create simple web pages in html?

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

  • Operating System (E.g. Windows, Linux)

  • Text Editor (E.g. Notepad, Sublime Text Editor)

  • Web Browser (E.g. Google Chrome, Microsoft Edge) 

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.

How can you create simple web pages in html?

Step 2

Open Sublime Text editor.

Click->File->New File

Click->File->Save as->Desktop->HTML->index.html

How can you create simple web pages in html?

Click, save.

How can you create simple web pages in html?

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" >   
  10.     <br />    
  11.                
  12.         <font face="Lato" size="5"><img src="C:\Users\vijayakumar\Pictures\logo.jpg" height="50px" width="100px"></font>  
  13.                                
  14.         <font face="cinzel" size="4">    
  15.             <a href="#">HOME</a>    
  16.                                       &n      bsp;                           &nbs      p;                                                        
  17.                              
  18.                                                                                     
  19.             <a href="#">VIDEOS</a>    
  20.                         
  21.             <a href="#">ARTICLES</a>    
  22.                         
  23.             <a href="#">BLOG</a>    
  24.                         
  25.             <a href="#">ABOUT US</a>    
  26.         </font>    
  27.     <br /><br /><br /><br />    
  28.     <br />    
  29.     <br />    
  30.     <h2 align="center">    
  31.         <font color="#F0B27A" size="9" >    
  32.             WELCOME TO WEB PAGE<br/>    
  33.     </font>    
  34.     SIMPLE WEB PAGE     
  35.     </h2>    
  36.     <h3 align="center">    
  37.         <font face="Lato" color="red" size="3">    
  38.             Onyly Using Simple HTML Code    
  39.         </font>    
  40.     <br /><br /><br /><br /><br /><br/><br/><br/><br/>    
  41.     <hr width="1500px">    
  42.     <center>    
  43.     <b>    
  44.     <font face="cinzel" size="4">    
  45.         <a href ="#">About Us|     
  46.         <a href ="#">Contact Us |    
  47.         <a href ="#"> Privacy Policy |    
  48.         <a href ="#"> Terms |     
  49.         <a href ="#">Media Kit |    
  50.         <a href ="#"> Sitemap |    
  51.         <a href ="#"> Report a Bug |    
  52.         <a href ="#"> FAQ Partners</a><br/>    
  53.         <a href ="#">C# Tutorials|    
  54.         <a href ="#"> Common Interview Questions|    
  55.         <a href ="#"> Stories |    
  56.         <a href ="#">Consultants |    
  57.         <a href ="#"> Ideas |    
  58.         <a href ="#"> Certifications    
  59.     </a><br/><br/>    
  60.             <font color="#FF0000">all@copyrights 2020</font>    
  61.     </font>    
  62.     </b>    
  63.     </center>    
  64. </body>    
  65. </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

How can you create simple web pages in html?

Conclusion

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

How do you write the simplest HTML page?

Most tags need to be opened < tag > and closed < /tag >. To make a simple web page you need to know only four tags: < HTML > tells the browser your page is written in HTML format. < HEAD > this is a kind of preface of vital information that doesn't appear on the screen.

How we can create a simple web page explain in detail?

Create and View a Web Page on Your Computer.
Requirements: Text Editor. ... .
Introduction. When you navigate to a web page on the Internet, the browser is doing a lot of work. ... .
Step 1: Open Your Text Editor. ... .
Step 2: Write Your HTML Skeleton. ... .
Step 3: Save Your File. ... .
Step 4: Open Your Web Page in Your Browser. ... .
Review..

How can I create a web page?

4 steps to create a website.
Choose and register a domain name. A domain name is what people type into their browser to view your website. ... .
Setup website hosting. The "Basic" package is more than enough for most new websites. ... .
Choose a WordPress theme. ... .
Publish some content..

What is the simple HTML page?

Example 1: This example creates a simple page without any content, which helps in understanding how to use the Html, Head, and Body tag in the HTML page. In the following example, we have not specified the title of the web page in the Head tag, so it will display the name of Html file as its title. <Html> <!--