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...

Tuesday, July 13, 2021

HTML ELEMENTS: html elements - HTML Tutorial

 HTML ELEMENT: An html file is made of elements. These elements are responsible for creating web pages and define content in that webpage. An element in html usually consist of a start tag <tag name> , close tag </tag name> and content inserted between them. Technically and element is a collection of start tag, attributes, end tag, content between them.Such as:  <p>Hello </p>Example:<!DOCTYPE html><html><head><title>My...

Sunday, July 11, 2021

HTML attributes: html attributes - HTML tutorial

HTML ATTRIBUTE: HTML attributes are special words which provide additional information about he elements or attributes are the modifier of the HTML element.Each element or tag can have attribute which defines the behavior of that element.Attributes should always be applied with start tagThe Attributes should always be applied with its name and value pair.The Attributes  name and values are case sensitive, and it is recommended by W3C that...

Thursday, July 8, 2021

HTML TAGS : html tags - HTML Tutorial

Html Tags: Html Tags are like keywords which defines that how web browser will format and display the content. With the help of tags a web browser can distinguish between an html content and a simple content. Html tags contain three main parts- opening tag, content and closing tag. But some Html tags are unclosed tags.When a web browser reads an html document browser reds it from top to bottom and left to right. HTML tags are used to create...

Building Blocks of html: HTML Tutorial

Building Blocks of HTML: An html document consist of its basic building blocks which are;Tags: An html tag surrounds the content and apply meaning to it. It is written between < and > brackets. Attribute: An attribute in html provides extra information about the element and it is applied within the start tag. An html attribute contains two fields: name and value.Elements: An html element is an individual component of an html file....

Wednesday, July 7, 2021

HTML Text Editors : html text editor- HTML Tutorial

HTML Text Editor: An html file is a text file, so to create an html file we can use any text editors.Text editors are the programs which allow editing in a written text, hence to create a web page we need to write our code in some text editor.There are various types of text editors available which you can directly download, but a beginner, the best text editor is notepad.After learning the basics, you can easily use other professional text editors...

Saturday, July 3, 2021

WHAT IS AN HTML: What is html - HTML Tutorial

What is HTML ?:             HTML is an acronym  which stands for Hyper Text Markup Language which is used for creating web pages and web applications. Let's see what is meant by Hypertext Markup Language, and Web Page.            Hyper Text: Hypertext  simply means "Text within Text." A text has a link within it, is a hypertext. Whenever you click...

Friday, July 2, 2021

HTML INTRODUCTION: html introduction - HTML Tutorial

HTML Introduction:HTML Tutorial provides basic and advanced concepts of HTML. This HTML tutorial is developed for beginners and professionals. In this tutorial, every topic is given step by step so that your can learn it in a very easy way. It you are new in learning HTML, then you can learn HTML from basic to a professional level and after learning HTML with CSS and JavaScript you will be able to create your own interactive and dynamic website....