HTML images
HTML Images
HTML images are defined within the <img> tag.
The source file (src), alternative text (alt), width and height are provided as attributes
<img src=”image.jpg” alt=”LearnersTV.in” width=”104″ height=”142″>
HTML Images
HTML images are defined within the <img> tag.
The source file (src), alternative text (alt), width and height are provided as attributes
<img src=”image.jpg” alt=”LearnersTV.in” width=”104″ height=”142″>
HTML Lists
HTML lists are defined with the <ul> (unordered/bullet list) or the <ol> (ordered/numbered list) tag, followed by <li> tags (list items)
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
Headings help in defining the hierarchy and the structure of the web page content.
HTML offers six levels of heading tags,
through ,the higher the heading level number, the greater its importance — therefore
tag defines the most important heading, whereas the
tag defines the least important heading in the document.
Importance of Headings
These tags are mainly written inside the body tag. HTML provides us with six heading tags from
Every tag displays the headings in a different style and font size
An attribute is used to define the characteristics of an HTML element and is placed inside the element’s opening tag. All attributes are made up of two parts − a name and a value
Name:-The name is the property you want to set. For example, the paragraph <p> element in the example carries an attribute whose name is align, which you can use to indicate the alignment of paragraph on the page.
Value:-The value is what you want the value of the property to be set and always put within quotations. The below example shows three possible values of align attribute: left, center and right.
The id attribute of an HTML tag can be used to uniquely identify any element within an HTML page. There are two primary reasons that you might want to use an id attribute on an element −
If an element carries an id attribute as a unique identifier, it is possible to identify just that element and its content.
If you have two elements of the same name within a Web page (or style sheet), you can use the id attribute to distinguish between elements that have the same name.
The title attribute gives a suggested title for the element. They syntax for the title attribute is similar as explained for id attribute −
The behavior of this attribute will depend upon the element that carries it, although it is often displayed as a tooltip when cursor comes over the element or while the element is loading.
HTML Element:-
An HTML element is defined by a starting tag. If the element contains other content, it ends with a closing tag, where the element name is preceded by a forward slash.An HTML element usually consists of a start tag and an end tag.There are some HTML elements which don’t need to be closed, such as <img…/>, <hr /> and <br /> elements. These are known as void elements.
HTML elements can be nested (elements can contain elements).
All HTML documents consist of nested HTML elements.
HTML is the standard markup language for Web pages. HTML is easy to learn so with HTML you can create your own Website.
The Full Form of HTML is HyperText Markup Language.
HTML consists of a series of short codes typed into a text-file by the site author — these are the tags. The text is then saved as a html file, and viewed through a browser, like Internet Explorer or Netscape Navigator. This browser reads the file and translates the text into a visible form, hopefully rendering the page as the author had intended.
Recent Comments