These are the requirements for your homework this Topic. You should go through all of the materials before beginning, so these requirements make sense.
Continue your Project 2 by creating two pages:
/project-2/pages
as about.html./project-2/pages
as more-info.html.
<head>
and <body>
elements on these pages!index.html
Go back to your Project 2 index.html. At the bottom of your content, add a relative link to your about.html and more-info.html. Your links may look something like this:
<!-- about.html Examples -->
<a href="./pages/about.html">About Me</a>
<!-- Or -->
<a href="./pages/about.html">About the Project</a>
<!-- more-info.html Examples -->
<a href="./pages/more-info.html">Want to learn more?</a>
<!-- Or -->
<a href="./pages/more-info.html">Watch the Video! / Hear the Sounds!</a>
about.html
This page is - you guessed it - all about you or the Instructable project in general (its purpose or goal, ect). This page will utilize:
Your page needs to inlcude 3 paragraphs (<p>
elements) about you or your site. Describe your process, why you chose this material for your Instructable, or describe your own creative process. These do not have to be long paragraphs.
The content of your page is up to you, but needs to include:
<id>
attributes for important elements.(Use more <div>
and class=""
elements if you’re feeling adventurous!)
You need to include a self-hosted video or audio selection on your site. This should be something personal to you or your project contents. A song to listen to while working, or a short insipiring video; I leave it up to you!
.mp4
and open-sourced version (most likey a .webm
or .ogg
)..mp3
and open-sourced version (most likey an .ogg
).Additionally this embed should include at least a heading, and possibly a description (if needed).
Can't find any media that works?
Feel free to use these .mp4 and .webm files of the animated Media Arts logo: Download Zip File
Conclude your page with a Contact section. This can be fictional or a real address, but it shouldn’t be where you live. You can use the University’s address if you like:
To include this, you should:
mailto:
!)<address>...</address>
element we discussed in Semantic Markup.This page will need relative links:
<ul>
<li><a href="../index.html">Back to Home</a></li>
</ul>
more-info.html
This page will be relatively simple and contain a third-party hosted audio or video (hosted on SoundCloud, YouTube or the like). It only needs:
Include metadata (this should be fairly similar across all your site pages).
Find an outside video or audio file that you feels enhances your project. This could be anything: a TV commercial, podcast, video from professional chefs, artisans, or educations… Whatever! It does not have to be long, either. Simply functional.
Additionally this embed should include at least a heading, and possibly a description (if needed).
This page will need relative links:
<ul>
<li><a href="../index.html">Back to Home</a></li>
</ul>
README.md
!