- Universal Design is a philosophy of design whose goals are to make something that works for the largest number of people. By incorporating inclusive design methods and implementing standards designed to help impaired users, a web designer can easily create accessible websites with only a few new tools.
-
- Universal Design is a philosophy of design whose goals are to make something that works for the largest number of people. By incorporating inclusive design methods and implementing standards designed to help impaired users, a web designer can easily create accessible websites with only a few new tools.
-
-
-
- )
-}
function App() {
return (
<>
-
-
+
>
);
}
diff --git a/src/content/content.jsx b/src/content/content.jsx
new file mode 100644
index 0000000..74ed5bf
--- /dev/null
+++ b/src/content/content.jsx
@@ -0,0 +1,46 @@
+// Andrew Barlow
+// Universal Design Spring 2021 Final
+
+// WEBSITE CONTENT////////////////////////////////////////////////////////
+
+// Content Section: Why Universal Design
+export function Why() {
+ return(
+
+
Why Universal Design?
+
+ Universal Design is a philosophy of design whose goals are to make something that works for the largest number of people. By incorporating inclusive design methods and implementing standards designed to help impaired users, a web designer can easily create accessible websites with only a few new tools.
+
+ Universal Design posits that the idea of "accessible design" falls short of the goalpost. Accessibility should not be an afterthought or specialty role of a developer, but should be a goal from the starting point of a website's design. It's main point being that accessible design is good design.
+
+ One of the most important ways to make a website universal is also the most straightforward. The HTML5 standard includes accessibility features baked into the default. By following the rules of semantic web design, a designer is already ahead of the curve. By properly tagging content, accessibility tools like screenreaders can display content in a friendly way to impaired users.
+
+
Images
+
+ <img src="img/cute-dog.jpg" alt="A very cute puppy">
+
+
+ )
+}
\ No newline at end of file
diff --git a/src/content/img/cute-dog.jpg b/src/content/img/cute-dog.jpg
new file mode 100644
index 0000000..4d3e20d
Binary files /dev/null and b/src/content/img/cute-dog.jpg differ