WebTricks
Home
Home
Tutorials
Q&A Forum
Blog
Videos
Sign up / Register
HTML Attributes - Playground
Back to Lesson
HTML Code
<!DOCTYPE html> <html lang="en-US"> <body> <h1>HTML Attributes</h1> <p><a href="https://www.webtrickshome.com">This is a link.</a></p> <p><img src="logo.png" width="100" height="50" alt="webtrickshome logo"></p> <p style="color:red">This is a paragraph with style attribute added.</p> <p title="This is a tooltip content">This is a paragraph with some additional information hidden. Hover over it to see the information.</p> </body> </html>
CSS Code
/* Write your CSS here */
Run Code