HTML Image and Video
In HTML, images are defines with the tag. The img tag is empty, which means that it contains attributes only and it has no closing tag. To display an image on a page, we need to use the src attribute. Read more…
In HTML, images are defines with the tag. The img tag is empty, which means that it contains attributes only and it has no closing tag. To display an image on a page, we need to use the src attribute. Read more…
It is similar to the border but it must be define in all direction of any particular on web page. While border can be define with any direction. Outline is not part of element while border is part of element is knows as Outline Style CSS.
It is mainly use to set the position of element on web page according to requirement. There are four method of Position Property. Static is a default position.
CSS (Cascading Style Sheet) is add to HTML pages to design the archive as per data in the style sheet . There are three methods for embedding CSS in HTML document are following :- Inline CSS, Internal CSS and External CSS.
Selector is an element in which we can define / set style according to requirement. CSS selectors select HTML elements according to its attribute, class, ID and type. is knows as CSS Selector.
List is a collection of element which represented in particular order on the web page is knows as list. There are three different types of list. HTML List Tags: Tag Description <ol> Defines an Order List <ul> Defines an Unordered Read more…
HTML colors are defined using a hexadecimal notation (HEX) for the combination of Red, Green, and Blue color values (RGB). The lowest value that can be given to one of the light sources is 0 (in HEX: 00). The highest value is 255 (in HEX: FF).
Heading: The <h1> to <h6> tags are used to define HTML headings. <h1> defines the most important heading and <h6> defines the least important heading. The syntax of <h1> to <h6> tags are <h1 [align =”left” | “center” | “right” Read more…
HTML5 is the latest version of HTML(hyper text Markup Language). HTML is not a programming language, but it is a markup language. Hypertext defines the reference link between the web pages, Markup defines the data within the tags and Language defines the communication.
When a user clicks a radio button, that button becomes selected, and all other buttons in the same group become deselected. The following example demonstrates how to create radio buttons on an HTML form.