HTML: Basics
Part-III
HTML Headings
These tags help us to give headings to the
content of a webpage. These tags are mainly written inside the body tag. HTML
provides us with six heading tags from <h1> to <h6>. Every tag displays the heading in a different style
and font...
Tuesday, April 2, 2019
Thursday, March 28, 2019
undefined
undefined
HTML: Basics Part-II
Basic HTML Document
Below mentioned are the basic HTML tags which
divides the whole document into various parts like head, body etc.
·
Every
HTML document begins with a HTML document tag. Although this is not mandatory
but it is...
undefined
undefined
HTML: Basics Part-I
In this post,
we will go through all the basic stuff of HTML coding. There are various tags
that we must consider and include while starting to code in HTML. These tags
help in organizing the basic formatting of elements in our script or web pages.
These step by step procedures will...
Saturday, March 23, 2019
undefined
undefined
HTML: Editor
HTML text editors are used to create and
modify web pages. HTML codes can be written in any text editors including
the notepad. One just needs to write HTML in any text editor and
save the file with an extension “.html” or “.htm”.
Some of
the popular HTML text editors...
Thursday, March 14, 2019
undefined
undefined
HTML: Page Structure
The
Basic structure of HTML page is given below. It contain some elements like
head, title, body, … etc. These elements are used to build the blocks of web
pages.
<!DOCTYPE html>: This tag is used to tells the HTML version. This
currently...