HTML – Attributes

An attribute is used to provide extra or additional information about an element. It takes two parameters name and value. The name parameter takes the name of the property we would like to assign to the element and the value takes the properties value or extent of the property names that can be aligned over the element. Every name has some value that must be written within quotes.

Example: This example illustrates the use of href, height,width and src attribute in an HTML document.

HTML
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" 
          content="width=device-width, initial-scale=1.0">
    <title>HTML Attributes</title>
</head>

<body>

    <h2>Link with href Attribute</h2>
    <a href="https://www.w3wiki.org/" 
       target="_blank" title="Geeks">
       w3wiki
      </a>

    <h2>Image with src, height, and width Attributes:</h2>
    <img src="https://media.w3wiki.org/gfg-gg-logo.svg" 
         alt="w3wiki Image" height="200" 
         width="300">

</body>

</html>

Output:

HTML Course Basics of HTML

In this article, we will go through all the basic stuff required to write HTML. There are various tags that we must consider and know about while starting to code in HTML. These tags help in the organization and basic formatting of elements in our script or web pages. These step-by-step procedures will guide you through the process of writing HTML.

Table of Content

  • HTML Paragraph 
  • HTML Horizontal Lines 
  • HTML Images 
  • HTML Attributes 
  • HTML Comments
  • HTML Lists 

Similar Reads

HTML Paragraph

These tags help us to write paragraph statements on a webpage. They start with the

tag and end with

. Here the
tag is used to break the line and acts as a carriage return.
is an empty tag....

HTML Horizontal Lines

The


tag is used to break the page into various parts, creating horizontal margins with help of a horizontal line running from left to right hand side of the page. This is also an empty tag and doesn’t take any additional statements....

HTML Images

The image tag is used to insert an image into our web page. The source of the image to be inserted is put inside the tag....

HTML – Attributes

An attribute is used to provide extra or additional information about an element. It takes two parameters name and value. The name parameter takes the name of the property we would like to assign to the element and the value takes the properties value or extent of the property names that can be aligned over the element. Every name has some value that must be written within quotes....

HTML – Comments

It is used for inserting comments in the HTML code. Using comments, specially in complex code, is the best practice of coding so that coder and reader can get help for understanding. It gives help to coder / reader of code to identify pieces of code specially in complex source code....

HTML – Lists

A list is a record of short pieces of information, such as people’s names, usually written or printed with a single thing on each line and ordered in a way that makes a particular thing easy to find. For example shopping list , To-do list etc. HTML offers three ways for specifying lists of information. All lists must contain one or more list...

HTML Tables

HTML table is a structured way to display data in rows and columns on a web page. It consists of a series of elements that define the structure of the table and its contents....