1 <!doctype html> 2 <html class="no-js" lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <title>Accessibility: SVGs</title> 7 <meta name="description" content="Accessible icon fonts"> 8 <meta name="viewport" content="width=device-width, initial-scale=1"> 9 </head> 10 <body> 11 <svg version="1.2" role="img" aria-labelledby="title desc" tabindex="0"> 12 <title id="title">A Circle</title> 13 <desc id="desc">A red circle with a black border.</desc> 14 <circle cy="50" cx="50" r="50" stroke="black" stroke-width="1" fill="red" /> 15 </svg> 16 </body> 17 </html> 18 19