HTML Elements

HTML Tutorial

HTML Elements

HTML elements are the building blocks of an HTML webpage. Opening, closing tags are used to structure content between them. A basic gist with examples below :

 

Basic Structure

An HTML element usually consists of an opening tag, content, and a closing tag. For instance, a paragraph element is defined with <p> for the opening tag and </p> for the closing tag, with the text content placed in between

				
					<p>This is a paragraph of text.</p>
				
			

Links

Images are embedded using the <img> tag. The src attribute defines the path to the image, and alt provides alternative text.

				
					<a href=”https://www.example.com”>Visit Example Website</a>
				
			

 

Images

Images are embedded using the <img> tag. The src attribute defines the path to the image, and alt provides alternative text.

				
					<img src=”image.jpg” alt=”A descriptive image text” width=”500″ height=”300″>
				
			

Try It Yourself