externalLinks.html (633B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>Html_Control_Form</title> 5 <meta charset="utf-8" /> 6 <meta name="viewport" content="width=device-width" /> 7 </head> 8 9 <p>Misc Link Types</p> 10 <section> 11 <a href="mailto://example@example.com">Email link</a> 12 </section> 13 14 <section> 15 <a href="tel://1234567890">Telephone link</a> 16 </section> 17 18 <section> 19 <a href="vnd.youtube://@Mozilla">Youtube schema link</a> 20 </section> 21 22 <section> 23 <a href="https://m.youtube.com/user/mozilla?cbrd=1">Youtube full link</a> 24 </section> 25 26 <section> 27 <a href="http://play.google.com/">Playstore link</a> 28 </section> 29 </html>