📦 EqualifyEverything / equalify-a11yGPT-tests

📄 1.2.1-pass.html · 24 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24<!DOCTYPE html>
<html>
<head>
  <title>Audio Podcast with Transcript</title>
</head>
<body>
  <h1>Welcome to our Podcast</h1>
  
  <h2>Episode 1: The Journey Begins</h2>

  <audio controls>
    <source src="episode1.mp3" type="audio/mpeg">
    Your browser does not support the audio element.
  </audio>

  <h3>Transcript</h3>
  <p>
    Welcome to the first episode of our podcast, where we begin our amazing journey. Today we're going to talk about the importance of starting, taking that first step, no matter how small...
  </p>
  
  <!-- Rest of the transcript content goes here -->
</body>
</html>