In this exercise, you're going to build a simple HTML page using the text you marked up in Exercise 0
HTML (and its cousin XML) is a markup language. Although we throw the word "code" around a lot in these exercises, you're not doing computer programming. Instead, you will be marking up a document with tags so that a browser will display it in a particular way (aka "presentation").
This is not a full HTML/CSS development course, so we won't get into crazy stuff like CSS 3D transformations. My goal for the HTML portion of the course is for you to know just enough to be dangerous. If you spend any time working in a content management system (WordPress is one, as is Blackboard!), a little basic HTML knowledge will help you to troubleshoot weird formatting issues. More importantly, you'll understand the basics of working in markup languages, which has applications in the kinds of content development and management work that can be part of many technical communication careers.
For some of us, Blackboard is trouble enough, and working with markup languages might be an intimidating idea. Please remember this section from the syllabus:
A spirit of inquiry and experiment is just as important as particular technical skills in this course. "Showing up" with broken or malfunctioning work is far better than showing up with an excuse, and sometimes we can learn more from your broken webtext than some slick Squarespace module. Your honest effort is more interesting to me than perfect work.
Use a plaintext editing program rather than your word processor to edit your files. I recommend:
<h1>This is a good spot for my headline or title</h1>
<h2>This is a second-level heading</h2>
<p>This is a single paragraph of text.</p>
<strong>important text, such as a key word</strong>
<em>Place em tags around text you want to emphasize</em>