WebTricks
Home
Home
Tutorials
Q&A Forum
Blog
Videos
Sign up / Register
HTML Links - Playground
Back to Lesson
HTML Code
<!DOCTYPE html> <html> <head> <title>HTML Links</title> <meta charset="UTF-8"> </head> <body> <h1>HTML Links</h1> <h2>Absolute URL</h2> <a href="http://localhost/webtrix/content/html-introduction" target="_blank">HTML Inroduction</a> <h2>HTML Links - The title Attribute</h2> <a href="http://localhost/webtrix/content/html-introduction" target="_blank" title="Go to HTML Introduction Lesson">HTML Inroduction</a> </body> </html>
CSS Code
/* Write your CSS here */
Run Code