Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Check out the W3C's <a href="http://www.w3.org/TR/REC-html40/index/attributes.html" rel="nofollow noreferrer">list of HTML attributes</a>, there's a "type" column in there and just look for URI types.</p> <p>And of course the <a href="https://www.w3.org/TR/html5/index.html#attributes-1" rel="nofollow noreferrer">HTML 5 version of that list</a> is useful too <em>(edit: updated link for HTML 5.2 <a href="https://www.w3.org/TR/2017/REC-html52-20171214/fullindex.html#attributes-table" rel="nofollow noreferrer">here</a>)</em></p> <p>So for HTML4 we've got:</p> <ul> <li><code>&lt;a href=url&gt;</code></li> <li><code>&lt;applet codebase=url&gt;</code></li> <li><code>&lt;area href=url&gt;</code></li> <li><code>&lt;base href=url&gt;</code></li> <li><code>&lt;blockquote cite=url&gt;</code></li> <li><code>&lt;body background=url&gt;</code></li> <li><code>&lt;del cite=url&gt;</code></li> <li><code>&lt;form action=url&gt;</code></li> <li><code>&lt;frame longdesc=url&gt;</code> and <code>&lt;frame src=url&gt;</code></li> <li><code>&lt;head profile=url&gt;</code></li> <li><code>&lt;iframe longdesc=url&gt;</code> and <code>&lt;iframe src=url&gt;</code></li> <li><code>&lt;img longdesc=url&gt;</code> and <code>&lt;img src=url&gt;</code> and <code>&lt;img usemap=url&gt;</code></li> <li><code>&lt;input src=url&gt;</code> and <code>&lt;input usemap=url&gt;</code></li> <li><code>&lt;ins cite=url&gt;</code></li> <li><code>&lt;link href=url&gt;</code></li> <li><code>&lt;object classid=url&gt;</code> and <code>&lt;object codebase=url&gt;</code> and <code>&lt;object data=url&gt;</code> and <code>&lt;object usemap=url&gt;</code></li> <li><code>&lt;q cite=url&gt;</code></li> <li><code>&lt;script src=url&gt;</code></li> </ul> <p>HTML 5 adds a few (and HTML5 seems to not use some of the ones above as well):</p> <ul> <li><code>&lt;audio src=url&gt;</code></li> <li><code>&lt;button formaction=url&gt;</code></li> <li><code>&lt;command icon=url&gt;</code></li> <li><code>&lt;embed src=url&gt;</code></li> <li><code>&lt;html manifest=url&gt;</code></li> <li><code>&lt;input formaction=url&gt;</code></li> <li><code>&lt;source src=url&gt;</code></li> <li><code>&lt;track src=url&gt;</code></li> <li><code>&lt;video poster=url&gt;</code> and <code>&lt;video src=url&gt;</code></li> </ul> <p>These aren't necessarily simple URLs:</p> <ul> <li><code>&lt;img srcset="url1 resolution1 url2 resolution2"&gt;</code></li> <li><code>&lt;source srcset="url1 resolution1 url2 resolution2"&gt;</code></li> <li><code>&lt;object archive=url&gt;</code> or <code>&lt;object archive="url1 url2 url3"&gt;</code></li> <li><code>&lt;applet archive=url&gt;</code> or <code>&lt;applet archive=url1,url2,url3&gt;</code></li> <li><code>&lt;meta http-equiv="refresh" content="seconds; url"&gt;</code></li> </ul> <p>SVGs can also contain links to resources: <code>&lt;svg&gt;&lt;image href="url" /&gt;&lt;/svg&gt;</code></p> <p>In addition, the <code>style</code> attribute can contain css declarations with one or several urls. For example: <code>&lt;div style="background: url(image.png)"&gt;</code></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload