-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccessibility.html
56 lines (44 loc) · 1.77 KB
/
accessibility.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset=utf-8>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Accessibility</title>
</head>
<body>
<div class="nav">
<ul>
<li><a href="./accessibility.html">Accessibility</a></li>
<li><a href="./fun.html">Cool Stuff</a></li>
<li><a href="./edu.html">Education</a></li>
<li><a href="./about.html">About me</a></li>
<li><a href="./index.html">Portfolio</a></li>
</ul>
</div>
<br />
<h1>Accessibility</h1>
<div class="access">
<h2>Colors</h2>
<p>All of the colors on this website are sufficiently contrasted on the website and there are no clashing colors in accordance with the WAVE Web Accessibility Tool.</p>
<h2>Text</h2>
<p>This website only untilizes one font which makes the site a lot easier to read.</p>
<h2>Links</h2>
<p>The links on my site all open to another tab so you do not have to continuously go back to the page you were at before.</p>
<h2>Images</h2>
<p>The images on this site all have alternate text in case the images do not load or there is a screen reader being used.</p>
</div>
<!-- This part is just the contact info -->
<div class="contact">
<h2>Contact</h2>
<a href="https://github.com/Tanis-02/Tanis-02.github.io.git" target="_blank">
<img src="./images/github_img.png" alt="Github Cat Image">
</a>
<a href="https://discord.gg/9ysCs44" target="_blank">
<img src="./images/discord_img.png" alt="Discord Image">
</a>
<a href="https://www.linkedin.com/in/elizabeth-gonzalez-8b2621176/" target="_blank">
<img src="./images/linkedin.png" alt="linkedin img">
</a>
</div>
</body>
</html>