Make sure all files that should be present are present.

This commit is contained in:
Storm Dragon
2024-10-17 16:33:13 -04:00
parent 9d78a3fbee
commit c615709602
1395 changed files with 1344591 additions and 0 deletions

View File

@ -0,0 +1,45 @@
<!DOCTYPE HTML>
<html>
<head>
<title>ARIA landmark role use example</title>
<style type="text/css">
div {
padding: 2%;
border: solid 2px #000000;
margin: 10px;
font: bold larger "Courier New", Courier, monospace;
white-space: inherit;
}
#banner {height:100px;background:#ff8c00 }
#navigation {float:left;
width:15%;
height:400px;
background:#7fff00}
#main {float:left;
width:50%;
height:400px;
background:#f0e68c}
#complementary {float:left;width:15%;height:400px;background:#4682b4}
#contentinfo {clear:both;height:100px;background:#ffb6c1}
#search {background:#ffff00;font-size:small;}
#form {background:#fafad2;font-size:medium;}
#application {background:#f5f5f5;font-size:medium;width:300px;height:200px}
</style>
</head>
<body>
<div id="banner" role="banner">test 1</div>
<div id="navigation" role="navigation">test 2</div>
<div id="main" role="main">test 3
<div role="application" id="application">test 4</div>
</div>
<div id="complementary" role="complementary"> test 5
<div role="form" id="form"> test 6
<div id="search" role="search">test 7</div>
</div></div>
<div id="contentinfo" role="contentinfo">test 8</div>
</body>
</html>