HTML Attributes

Attribute in HTML

  • Attributes in HTML are special words that tell you more about an element. Attributes change the way an HTML element works.
    Attributes can be added to all HTML elements.
  • Each element or tag can have attributes that tell how that element should act.
  • Attributes should be used only with the start tag.
  • Attributes give elements more information about themselves.
  • The name and value of the attribute should always be used together.
  • The Attributes name and values are sensitive to capitalization, and W3C suggests that only lowercase letters should be used.
  • You can add more than one attribute to a single HTML element, but you must leave a space between each attribute.

Syntax

<element attribute_name=\”attribute_value\”>Your content</element>

The href Attribute

The <a> tag defines a hyperlink. The href attribute specifies the URL of the page the link goes to:

Example

<a href=\”https://www.coderazaa.com\”>Visit Coderazaa</a>

Our HTML Links chapter has more information about links.

The src Attribute

The src attribute says where the image came from.

With the <img> tag, you can add a picture to an HTML page. The src attribute tells the browser where to find the image to be shown:

Example

 

<img src=\”https://www.coderazaa.com/img/your_img.png\”>

There are two ways to tell the src attribute where the URL is:

Absolute URL: This is a link to an image that is hosted on a different website. Example: src=\”https://www.coderazaa.com/img/your_img.png\”.

Notes: Images on other sites may be protected by copyright laws. If you don\’t ask for permission to use it, you might be breaking the law. Also, you have no control over external images; they can be removed or changed at any time.

2. Relative URL: This is a link to an image on the same website. In this case, the domain name is not part of the URL. If the URL starts with a letter other than a slash, it is relative to the page you are on. Example: src=\”your_img.png\”. The URL is relative to the domain if it starts with a slash. Example: src=\”/img/your_img.png\”.

Tip: Relative URLs are almost always the best way to go. If you change domains, they won\’t break.

The width and height Attributes

The width and height attributes of the img> tag tell the computer how wide and tall the image is (in pixels):

In our HTML Images chapter, you can find out more about images.

Example

 

<img src=\”https://www.coderazaa.com/img/your_img.png\” width=\”500\” height=\”300\” />

The alt (alternative) attribute

If an image can\’t be shown for some reason, the alt attribute of the img> tag tells what text should be shown instead. This can happen if the connection is slow, if there is a mistake in the src attribute, or if the user is using a screen reader.

Example

 

<img src=\”https://www.coderazaa.com/img/your_img.png\” alt=\”image alternative name\”>

Related Posts
Introduction to HTML

HTML Introduction HTML is the most common language used to mark up Web pages. What does HTML mean? Hyper Text Read more

What is HTML

HTML stands for Hyper Text Markup Language, which is a programming language used to make web pages and web apps. Read more

HTML Basic Examples

In this chapter, we\'ll show you some simple examples of HTML code. Don\'t worry if we use tags that you Read more

HTML text Editors

Editors for HTML text HTML files are text files, so any text editor can be used to make them. Text Read more

HTML Tags

Learn HTML Tags HTML tags are kind of like keywords that tell a web browser how to format and show Read more

HTML Elements

Elements make up an HTML file. These elements are what make web pages and tell you what content is on Read more

HTML Headings

Headings in HTML The <h1> to <h6> tags are used to set up headings in HTML. <h1> shows which heading Read more

HTML Paragraphs

HTML Paragraphs A paragraph is a block of text that always starts on a new line. The HTML <p> element Read more

Scroll to Top