-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsample-2.01.html
More file actions
62 lines (52 loc) · 1.9 KB
/
sample-2.01.html
File metadata and controls
62 lines (52 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>Web accessibility demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link type="image/ico" rel="shortcut icon" href="//resources.esri.com/favicon.ico">
<link type="image/ico" rel="icon" href="//resources.esri.com/favicon.ico">
</head>
<body class="claro">
<style>
p, img, figure {
width: 300px;
}
figure {
margin: 0px;
font-weight: bold;
}
</style>
<header>
<h1 tabindex="0">Web accessibility demo</h1>
<h2 tabindex="0">Alternative text for images is mandatory and can take multiple forms</h2>
</header>
<main role="main">
<p tabindex="0">
<img
src="http://www.enlightphoto.com/views/blogpix/post12/120913b_SRA-0056-0063_Sweetwater_20x48_pano_750.jpg"
alt="The Sweetwater Mountains CALIFORNIA" />
</p>
<!-- A decorative image should still have an empty alt attribute -->
<img src="assets/separator.png" alt="" />
<p tabindex="0">
<img
src="http://upload.wikimedia.org/wikipedia/commons/b/b1/Puno-Peru.jpeg"
alt=""/>
<strong>Puno Peru</strong>
</p>
<img src="assets/separator.png" alt="" />
<p>
<figure tabindex="0">
<img
src="http://upload.wikimedia.org/wikipedia/commons/8/8c/Lake_Sabrina_before_Sunrise.jpg"
alt="" />
<figcaption>Bishop Creek CALIFORNIA</figcaption>
</figure>
</p>
<p style="font-style: italic; width: 100%;" tabindex="0">Content from <a href="http://story.maps.arcgis.com/apps/MapJournal/index.html?appid=dc91db9f6409462b887ebb1695b9c201&webmap=dd6f7f93d54341a69a47002696cf5744" target="_blank">Explore a Tapestry of World Ecosystems</a><p>
</main>
</body>
</html>