-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.97 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Simple - Colour Contrast Analyser Demo</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-theme.css">
</head>
<body>
<div class="container-fluid" style="background-color: #e7f4e4 !important;">
<a href="#welcome" class="skiplink font-size-lg">Skip to main content</a>
<nav class="navbar navbar-default font-size-lg" style="margin-top: 20px">
<div class="container-fluid">
<div class="navbar-header" style="padding-left: 15px;">
<button type="button" style="float: left;" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span>Menu</span>
</button>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-left">
<li class="active"><a href="index.html">Simple Demo <span class="sr-only">(current)</span></a></li>
<li><a href="document-accessibility-overview.html">Document Accessibility Demo</a></li>
<li><a href="detailed-overview.html">Detailed Accessibility Demo</a></li>
</ul>
</div>
</div>
</nav>
<header>
<h1 id="welcome">Simple Demo</h1>
</header>
<section aria-labelledby="text-contrast-basics">
<h2 id="text-contrast-basics">Test the text below!</h2>
<p style="background-color: #2aabd2; color: black;">This is example text with font size of 14 pixels. The background colour is blue and the font colour is black. What is the contrast ratio?</p>
</section>
</div>
</body>
</html>