Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html> <head><title>Links</title></head> <body style="padding: 20px; font-family: Arial; line-height: 2;"> <a href="https://learncode.com">LearnCode Home</a><br> <a href="mailto:hello@example.com">Send Email</a><br> <a href="#bottom">Jump to Bottom</a><br> <br><br><br><br><br> <div id="bottom"> <p>You reached the bottom!</p> </div> </body> </html>
Result
Open