HTML
CSS
JavaScript
jQuery
PHP
SQL
WordPress
HTML Tutorials

Overview

Attributes are name-and-value pairs used to define the characteristics of an HTML element, and are placed inside the element’s opening tag. There are many different attributes depending on the HTML tag being used. But the main three are the id, class, and style attributes.

The name is the property you want to set, and the value is the value of the property and is always put inside quotations.

ID Attribute

The following provides an id to a paragraph of text and one to an image. An id is like a nickname – a very important nickname. We may use it to refer back to the element using CSS or JavaScript and since it’s a very important nickname it will take precedence over other minor nicknames (the class attribute).

				
					<p id="main_paragraph">This is a paragraph.</p>

<img decoding="async" src="/images/logo.png" id="logo_image" alt="My Logo" />
				
			

Class Attribute

The following uses the class attribute to provide a minor nickname to an element. It can also be used to refer back to the element using CSS or JavaScript, but if another rule in our CSS or JavaScript conflicts and is referring to the element’s id, the class (minor nickname) will be overruled by the id.

				
					<p class="paragraph">This is a paragraph.</p>

<img decoding="async" src="/images/logo.png" class="image" alt="My Logo" />
				
			
				
					<p id="main_paragraph" class="paragraph">This is a paragraph.</p>

<img decoding="async" src="/images/logo.png" id="logo_image" class="logo_image image no_border" alt="My Logo" />
				
			

Style Attribute

The style attribute allows you to specify style rules within the element itself instead of placing them in a linked stylesheet. However, this should be done sparingly, as it’s not good practice. It’s better to keep all, or nearly all, of your styles in one place – the linked style sheet for your site or document.

The style attribute is followed by one or more CSS styles with the property coming first, then a colon, then the value of the property, and closed with a semi-colon (style=”color: red;”).

				
					<p class="paragraph" style="color: red; font-size: 18px;">This is a paragraph.</p>

<img decoding="async" src="/images/logo.png" style="border-color: red;" class="image" alt="My Logo" />
				
			

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

HTML
CSS
JavaScript
jQuery
PHP
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.