HTML Formatting

There are several HTML formatting elements through which we can change the appearance of text. The text to be format is written in between the opening and closing tag of that specific html element. Each HTML Formatting element is used for a unique purpose such as to make underline a text or to make text … Read more

HTML Comments

The <!—> is a tag for HTML comment. The notes which are commented are not seen by the browser. Basically it helps the developer to write notes about their code which will later on help them to understand the code. These HTML comments are visible to anyone who visit the source code. HTML Comment Syntax … Read more

HTML Block and Inline Elements

HTML block and inline elements are two types of element with respect to element display value. Block and Inline elements Now lets see block and inline elements below: Block element: A block element always start on a new line and take full available width. The block level element can contain other block and inline elements … Read more

HTML JavaScript

As HTML and CSS gives structure and styling to the page. In HTML JavaScript is used to make the webpage interactive and dynamic. It is basically a text based programing language which make the webpage responsive and interactive. HTML JavaScript Tags Following are HTML tags used for client side javascript: Tag Description <script> It defines … Read more

HTML Citation and Quotation

HTML citation and quotation are essential elements of website for content writing. Some of following html elements are used for quotation and citation of webpage. HTML Citation and Quotation Tags Element Description <q> Defines a short inline quotation <blockquote> Defines a section quoted from other source <cite> Defines title of work <abbr> Defines an abbreviation … Read more

HTML Styles- CSS

CSS stands for Cascading Style Sheet. It monitor the layout of several webpages, developer can write it once and can use it in several webpages.CSS allows to control the styling features of webpage like color, font, background, screen sizes and many more. The CSS is basically a styling sheet which controls the layout of a … Read more

HTML Form Elements

There are different HTML form elements which are used in between <form> and </form>. The form element can contain one or more elements. Lets discuss the form elements below: HTML Form Elements: Tags Element Description <input> It defines the command of input. <textarea> It defines multiline command of inputs(textarea). <label> It defines label for input … Read more

HTML Audio

HTML <audio> element is used to embed the audio with webpage. Previous versions of html did not support audio files the audios were played using different plugins but html5 provide support for audio file. HTML Audio Tags: Before moving ahead lets discuss some basic audio tags. Your browser does not support the audio element. Note: … Read more

Form Input Types

An important element of the HTML form is < input type= “> in HTML. The type attribute of the input element can be of different types, which defines the information field. For example, < input type=”text “name=”name” > gives a text box. The following is a list of all types of HTML element < input>. Type=“ ” Description text Defines … Read more

HTML Forms

HTML form is used to collect different kind of inputs from user it will collect data from the user and than it will post it to back-end application for further processing. HTML forms contain different input elements like text fields, check box, radio buttons and many more these are also known as html controls. HTML … Read more