Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Link Tags</title> <!-- Stylesheets --> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/css/print.css" media="print"> <!-- Favicon (multiple sizes) --> <link rel="icon" href="/favicon.ico"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png"> <link rel="apple-touch-icon" href="/apple-icon-180.png"> <!-- Performance --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preload" href="/fonts/Inter.woff2" as="font" type="font/woff2" crossorigin> <!-- RSS feed --> <link rel="alternate" type="application/rss+xml" title="Blog Feed" href="/feed.xml"> <!-- Canonical --> <link rel="canonical" href="https://example.com/page/"> </head> <body>...</body> </html>
Result
Open