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