Essential Guide to HTML Basics

Essential Guide to HTML Basics

WHAT IS FRONT END?

Front end is a layer above the backend. Front end is a combination of two different elements . One is the graphics design(the look) and another is user interface(the feel). We can create front end by using web languages like HTML,CSS and JavaScript.

WHAT IS HTML?

HTML is a web language/markup language which is use to create structure of a web pages that run on internet.HTML stands for Hyper Text Markup Language. HTML also known as tag base language because we use different tags in HTML for creating a web page. Now a days most of the web pages are designed by using HTML.

WHAT IS TAG?

As we discuss that HTML is a tag base language, because we use different tags in HTML to create web pages. Tags are a pair for angle bracket(<>) that contains HTML elements. HTML tags are keywords that tell a web browser how to display a web page. In HTML there are two type of tags, that is "opening tag" and "closing tag". Open tag is denoted by symbol (<>), and close tag is denoted by (</>). Apart from this also there are two types of tags, paired tag and unpaired tag.

EDITOR FOR HTML

There are many editors present for creating web pages by using HTML. But VS Code and note-pad are popular. Note-pad is a system software that comes with windows operating system. VS Code is developed by Microsoft but it is not a system software.

HOW TO WRITE HTML CODE BY USING VS CODE

\>Download VS Code from your web browse and install it.

\>After installing VS Code download extensions like live server, material icon theme.

\>Create a folder in your PC.

\>Create a HTML file inside the folder.

\>Write HTML code in that file.

\>It will show your output in browser.

THANK YOU