How to create website using HTML


How we design websites in HTML(by...EDUshark...)


Html stands for hyper text markup language which is still privilege globally but rather talking about its origin lets dive straight into its applications and purpose for newbies or beginners.
Newest version of html is html 5
which is widely used for web designing even now, as you can think our website is also made using this language 

Html is also used for:--

html works with the collaboration of designing language like CSS or PHP (Actually I will send some walk through on CSS and PHP later.)
To create a simple html file you need at least an Notepad.

Steps to create an html file

1. Open notepad and type the following code for "Hello World"



Here you can see <h1> and <p>. These are the intermediate tag that are used for:
<h1>  This is heading tag of the largest size.

<p>  This tag is used provide paragraph lines.

For the starting of any html file we should place 
<html>
and at the end 
</html>

The most important or the basic tags of an html file are listed below.

<html>
<head>
<title>
</title>
</head>
<body>
-----------------------------------------------
----------------------------------------------------
---------------------------------------------------------
I MEAN YOUR DESIGN AND CODE
---------------------------------------------------------
---------------------------------------------------
-----------------------------------------------
</body>
</html>

2. For the HTML file to work fine you need to save it as...xyz.html


here xyz is the name of the file and it is compulsory to save as .html format


Keep in mind that this is the beginning of an whole 20 page walk through so you should subscribe to our social media and our daily newsletters for convenience 

We will continue our programming geek in future post





Comments