<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accessible Accordion Example</title>
<style>
.accordion {
border: 1px solid #ccc;
border-radius: 5px;
margin: 20px 0;
}
.accordion-header {
padding: 10px;
cursor: pointer;
background-color: #f0f0f0;
border-bottom: 1px solid #ccc;
}
.accordion-content {
display: none;
padding: 10px;
}
.accordion-content[aria-expanded="true"] {
display: block;
}
</style>
</head>
<body>
<h1>Accessible Accordion Example</h1>
<h4>Use your keyboard (Enter or Space key) to toggle the accordion!</h4>
<div class="accordion">
<div class="accordion-header" id="accordion-header-1" role="button" aria-controls="accordion-content-1" aria-expanded="false" tabindex="0">
Section 1
</div>