"Fossies" - the Fresh Open Source Software Archive

Member "icingaweb2-2.11.4/doc/accessibility/svg.html" (26 Jan 2023, 607 Bytes) of package /linux/www/icingaweb2-2.11.4.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) HTML source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    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