forked from Technigo/js-project-accessibility
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
88 lines (77 loc) · 1.68 KB
/
about.html
File metadata and controls
88 lines (77 loc) · 1.68 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>About</title>
<link
rel="stylesheet"
href="css/styles.css"
/>
</head>
<body>
<a
href="#introduction"
class="skip-link"
>
Skip to main content
</a>
<header id="header">
<div class="header-content">
<h1>Introduction</h1>
<nav
role="navigation"
aria-label="main menu"
>
<ul>
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="./about.html">About</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main-content">
<section
id="banner"
role="banner"
>
<img
src="assets/Banner.png"
alt=""
class="noinfo-image"
>
</section>
<section id="introduction">
<h2> Introduction to our team</h2>
<p>We are a team of designers and developers, who believe accessibility should not be a feature — but a
foundation. Whether you're new to the topic or already passionate about inclusive design, we hope this helps you
see things from new perspectives — and inspires you to build with empathy, for everyone.
</p>
</section>
</main>
<footer role="contentinfo">
<div class="footer-content">
<nav
role="navigation"
aria-label="Footer menu"
>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
</ul>
</nav>
</div>
</footer>
</body>
</html>