This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Wednesday, July 28, 2021

HTML Table tag: table tag in HTML - HTML Tutorial

Table tag in HTML: HTML table tag is used to display data in tabular form (row * column) There can be many columns in a row. We can create a table to display data in tabular form  using <table>element with the help of <tr>, <td>, and <th> elements. In Each table table row is defined by <tr> tag, table header is defined by <th> tag and table data is defined by <td> tags.&nb...

Sunday, July 25, 2021

HTML Image tag: Image tag in HTML - HTML Tutorial

HTML Image tag:HTML img tag is used to display image on the web page. HTML  img tag is an empty tag that contains attributes only closing tags are not used in HTML image element.Example: <h1> HTML Image tag </h1><img src="Good Morning.jpg" alt="Good Morning Friends">Output:Attributes of HTML img tag:The scr and alt are important attributes of HTML img tag. All attributes of HTML image tag are given below:1. scr:It is a...

Saturday, July 24, 2021

HTML Anchor tag: Anchor tag in HTML - HTML Tutorial

HTML Anchor tag:The HTML anchor tag defines a hyperlink that links one page to another page. It can create hyperlink to other web page as well as files, location, or any URL. The "href" attributer is the most important attribute of the HTML a tag. and which links to destination page or URLhref attribute of HTML anchor tag:The href attribute is used to define the address of the file to be linked. In other words, it points out the destination page.The...

Friday, July 23, 2021

HTML Phrase tags: Phrase tags in HTML - HTML Tutorial

HTML Phrase tags:The HTML phrase tags are special purpose tags, which defines the structural meaning of a block of text or semantics of text. Following is the list of phrase tags, some of which we have already discussed in HTML formatting;Abbreviation tag: <abbr>Acronym tag: <acronym> (Not supported in HTML5)Marked tag: <mark>Strang tag: <strong>Emphasized tag <em>Definition tag: <dfn>Quoting tag; <blockquote>Short...

Wednesday, July 21, 2021

HTML Paragraph tag: Paragraph tag in HTML - HTML Tutorial

 HTML Paragraph tag:HTML paragraph or HTML p tag is used to define a paragraph in a web page or HTML document. Paragraph s are basically blocks of similar content, images, links, etc grouped together and displayed on a web-page. It  always starts with a new line and browsers automatically add some white spaces before and after each paragraph. It has a starting <p> and ending</p> tag. Example: <p>This is first...

Monday, July 19, 2021

HTML Heading: H1 to H6 Tags in HTML - HTML Tutorial

 HTML Heading - H1 to H6 Tags in HTML:HTML heading is a basic need to make our web page attractive and systematic. In order to achieve this, HTML5 provides six basic headings tags (h1 to h6) that are displayed on the webpage as titles, subtitles or any other relevant details. Let us learn these heading in HTML in details now.IMPORTANCE OF HTML HEADING:1. In order to attract and engage the users, it is important to drive their attention to the...

Saturday, July 17, 2021

HTML Formatting : Text Formatting - HTML Tutorial

HTML Formatting:HTML Formatting  is a process of formatting text for better look and feel. HTML provides us ability to format text without using CSS. There are many formatting tags in HTML These Tags are used to make text bold, italic and underlined. There are almost 14 options available that how text appears in HTML. Formatting tags are divided into two categories:-Physical tag: These tags are used to provide the visual appearance to the...