20 lines
607 B
HTML
20 lines
607 B
HTML
<!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>
|
|
|
|
|