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 instructions.html./project-2/pages
as form.html.
<head>
and <body>
elements on these pages:<!DOCTYPE html>
<html>
<head>
<!-- At least the Title Element needs to be inlcuded. -->
<title>This is the title of this page.</title>
</head>
<body>
<!-- Body content goes here. -->
</body>
</html>
Review this page if you need to.
index.html
Go back to your Project 2 index.html. At the bottom of your content, add a relative link to your instructions.html. Your link may look something like this:
<a href="./pages/instructions.html">Proceed to Instructions</a>
instructions.html
This page is for your step-by-step instructions, be they cooking directions, lesson content, how-to crafting guide, etc. This page will utilize:
All related content needs to be grouped by rows into a table. This could be “step 1,” and image of that step, written content about that step, and/or related numerical data (“prep time,” date, amount, etc).
The content of your form is up to you, but needs to include:
<table>...</table>
element to contain your table.<th>
, <td>
, and <tr>
to structure the table.You may create or source images from the internet to add to your instructions, either as page decoration, content, or as visuals for the steps presented in your table.
Where you place your images is up to you, but you need to include:
/images
child directory.src=""
attributes.alt=""
text.title=""
.width=""
and height=""
values. Watch your ratios - you can’t just make these up.Your instructions.html
page should contain these code instances, that you learned about in Topic-04:
<abbr title="">...</abbr>
)
<dfn>...</dfn>
)
<cite>...</cite>
)
This page will need relative links:
<!-- These are just examples. Your links may look different. -->
<ul>
<li><a href="./form.html">Take the Quiz!</a></li>
<li><a href="../index.html">Back to Home</a></li>
</ul>
form.html
This page will contain a form of some type that’s applicable to your Instructable. This could be something like:
The content of your form is up to you, but needs to include:
<form>
element (including action="#"
and method=""
) to wrap the form elements in.<fieldset>
elements to group form elements.<label>
elements to make all form elements accessible.autofocus
attribute on the first form element.require
attribute.placeholder=""
attribute in at least one form element.name=""
attributes for each formfield.If you decide to go with a catalogue or cookbook-like form entry, this is also a great place to use imagery!
This page will need relative links:
<!-- These are just examples. Your links may look different. -->
<ul>
<li><a href="./instructions.html">Need a hint?</a></li>
<li><a href="../index.html">Back to Home</a></li>
</ul>
README.md
!