HTML COMPLETE TUTORIAL
HTML represents HyperText Markup Language. It is utilized to configure website pages utilizing a markup language. HTML is the blend of Hypertext and Markup language. Hypertext characterizes the connection between the site pages. A markup language is utilized to characterize the text archive inside the label which characterizes the construction of site pages.
HTML is a markup language that is utilized by the program to control text, pictures, and other substances to show in the necessary configuration.
For what reason to utilize HTML?
HTML assists with organizing our site well. The HTML is a basic building block-like cell. Because without cells our body cannot function properly. Like that without HTML, a site cannot be created. Learning HTML at that point is an absolute requirement, especially given the fact that you can't build a website without information, especially assuming you need to run as a software developer in a web development space. ..
The base for making sites: HTML is the essential need a designer should know while building a site without any preparation.
Learn web improvement: HTML is the initial move towards learning Web Development. When you learn HTML, you can assemble basic, static sites without any problem.
Can become specialist: Since web improvement has the best extension in outsourcing, along these lines learning HTML will unquestionably assist you with getting the best arrangements of site advancement on the lookout.
BASIC STRUCTURE OF HTML:
<!DOCTYPE html> - tells us the version
<html> - html opening tag
<head> - header file
<title></title> - title tag where we can enter the title of the webpage
</head> - closing heading tag
<body> - body part of webpage
<h1></h1> - heading tag
<p> The content</p> - paragraph tag
</html> - html closing tag
A SIMPLE WEBPAGE
<!DOCTYPE html>
<html>
<head>
<title> SIMPLE WEBPAGE </title>
</head>
<body.
<h2> SIMPLE WEBPAGE</h2>
<p> Hi all this is my demo webpage.</p>
</body>
</html>
LEARN FURTHER ON:


No comments:
Post a Comment