Html Definition
HTML stand for HyperText Markup Language.Html is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript (html).
To Write html we use tags reason while it’s a markup language, tags and the core syntax of html and we will discuss about in the next post.
How to write
To write Html we use any classic text editor the html file must have index. Html as name for web browser to understand that it’s a html file. Now let’s start writing our first line of html.
<html>
your code here !
</html>
Did you notice we use an opening tag <html> and closing tag </html> to write html. That is the first rule in html elements have an opening <element> tag and closing tag </element>.
So that’s is all for html we will discuss about others html elements in the next articles.
Thanks!