Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Solution for Technigo Coding Challenge</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>


<body>
<!-- YOUR CODE GOES HERE: -->
<div class="steelblue-box">
<h1>Accessibility</h1>
</div>
<p>
"The Web is fundamentally designed to work for all people,
whatever their hardware, software, language, location, or ability.
When the Web meets this goal, it is accessible to people with a diverse range of hearing,
movement, sight, and <a href="https://www.sciencedirect.com/topics/psychology/cognitive-ability">cognitive
ability</a>."
</p>
<h2>Learn more</h2>
<p>
<a href="https://www.w3.org/standards/webdesign/accessibility"> Accessibility examples</a>.</p>
<p>
<a href="https://developer.mozilla.org/en-US/docs/Learn/Accessibility/HTML"> HTML: A good basis for accessibility</a>.</p>
</body>
</html>
17 changes: 17 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/* Example styling of a h1 element */
media="handheld, only screen and (max-device-width: 480px)"
}

h1 {
color: #333;
}

.steelblue-box {
background-color: steelblue;
padding:0px
width:0px
}

h2 {
color:#333;
}