N. Achyut Uncategorized HTML full course for beginner.. || learn HTML in EASY WAY

HTML full course for beginner.. || learn HTML in EASY WAY

html course

HTML(Hypertext markup language) is the markup language which are design to be displayed in a Web browser like chrome, internet explorer,Firefox etc. we can link some language tools like CSS and JavaScript(JS) in HTML.

HTML 5 is the latest version of the HTML that defines the properties and behaviors of web page content by implementing a markup based pattern to it.

you may know that in internet every single page is written in HTML. we can create our own website by using HTML so it is easy to use.

The basic syntax for the HTML is :

<!DOCTYPE html>
<html>
<head>
<title>Page_title</title>
</head>
<body>

<h1>your heading</h1>
<p>your paragraph.</p>

</body>
</html>

Here H1 is the headline 1 and p is for paragraph writing
you can write this syntax/code in your notepad/notepad +/sublime text/ visio studio code and save it using .html extension. now you can browse it in your browser to see the real output.

output:

output of the previous program

Related Post