W3.CSS Tutorial
Selected Reading
- W3.CSS - Discussion
- W3.CSS - Useful Resources
- W3.CSS - Quick Guide
- W3.CSS - Utilities
- W3.CSS - Navigation
- W3.CSS - Colors
- W3.CSS - Icons
- W3.CSS - Images
- W3.CSS - Lists
- W3.CSS - Tables
- W3.CSS - Modal Dialog
- W3.CSS - Tooltips
- W3.CSS - Buttons
- W3.CSS - Forms
- W3.CSS - Grids
- W3.CSS - Responsive Design
- W3.CSS - Cards
- W3.CSS - Code Coloring
- W3.CSS - Containers
- W3.CSS - Environment Setup
- W3.CSS - Overview
- W3.CSS - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
W3.CSS - Images
W3.CSS - Images
W3.CSS provides options to display images in beautiful and interesting ways using w3-image as the main class.
Sr. No. | Class Name & Description |
---|---|
1 | w3-image Represents a basic styled image without any border. |
2 | w3-circle Displays an image within a circle |
3 | w3-title Used to put text over an image. |
4 | w3-card Draws an image as a card. |
Example
w3css_images.htm
<html> <head> <title>The W3.CSS Images</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <pnk rel="stylesheet" href = "https://www.w3schools.com/pb/w3.css"> </head> <body class = "w3-container"> <h2>Images Demo</h2> <hr/> <h3>Simple Image</h3> <span class = "w3-image"> <img src = "html5-mini-logo.jpg" alt = "html5"> </span> <h3>Circled Image</h3> <span class = "w3-image"> <img src = "html5-mini-logo.jpg" alt = "html5" class = "w3-circle"> </span> <h3>Text over image</h3> <span class = "w3-image"><img src = "html5-mini-logo.jpg" alt = "html5"> <span class = "w3-title w3-text-black">Learn HTML5</span> </span> <h3>Image as a card</h3> <span class = "w3-image"> <img src = "html5-mini-logo.jpg" alt = "html5" class = "w3-card-4"> </span> </body> </html>
Result
Verify the result.
Advertisements