# E1: HTML Bio

# Your first HTML

In class: no points

We're going to get you started with some basic HTML by making a short bio in Codepen.

# Step 1

You've created your Codepen account, right? Login and make a new "pen". Name it E1: HTML Bio

Make sure to hit the "Save" button along the way. Codepen doesn't autosave.

# Step 2: Add a profile image

Add a picture of yourself. You can't upload photos directly to Codepen, so try using postimage to upload a modestly sized image of yourself (~200px square) to use. After it's uploaded, copy the "Direct Link".

Start your pen with an <img> tag in the HTML panel of the pen. It's the tag we use to show images in an HTML document. It works like:

<img width="200" height="200" src="https://i.postimg.cc/XN2Rr5v3/brian-norris-head.png" alt="Brian Norris" />
1

width and height are set in pixels. You will almost never have to use these attributes and they're 100% optional, but I'm including them for now.

src means "source" and should point to the image file in question. It can be a relative path or an absolute path, which we will talk more about later. Here, since we're linking to another domain, we have to use the absolute path, which means we need to have the entire URL including the "https".

alt is also optional, but its a best practice to try and include it. It's the text that is displayed if your image fails to load, and assistive technology for the blind will read it to describe the image for users who can't actually see it. It can also help with Search Engine Optimization (SEO).

All of the above are called HTML Attributes. They're parts of the "Tag" and are sometimes required, and sometimes optional and always in the format attribute="value". Understanding these and their tags are essential to understanding HTML.

Image tags don't wrap around anything, so it's proper to include a / at the end of the tag to indicate it's complete (this is called a "self-closing" tag).

HTML lets you use tags to define what the different parts of text in a document mean.

Say you have a heading, like "My Heading" and a paragraph underneath.

My Heading

HTML stands for HyperText Markup Language. It was invented by British
scientist Tim Berners-Lee in the late 1980s when he was working at a 
laboratory called CERN in Switzerland. Hard to imagine but in those days 
computer files basically sat on one machine and couldn’t easily be read by 
another. Not only did Tim invent HTML to “mark up” (or format) text, he 
invented the first web browser so he could read those files from anywhere.
1
2
3
4
5
6
7
8

How does a browser, or any machine, know what is a heading, and what is a paragraph. It doesn't, you have to define it, with tags. So instead, we "markup" the document with tags...

<h1>My Heading</h1>

<p>HTML stands for HyperText Markup Language. It was invented by British 
scientist Tim Berners-Lee in the late 1980s when he was working at a 
laboratory called CERN in Switzerland. Hard to imagine but in those days 
computer files basically sat on one machine and couldn’t easily be read by 
another. Not only did Tim invent HTML to “mark up” (or format) text, he 
invented the first web browser so he could read those files from anywhere.</p>
1
2
3
4
5
6
7
8

The tags let you start an element in one place, then define where it ends. Notice, the closing tag always has a slash (/), that means, "stop my tag here".

There are around 100 types of HTML tags but on a day to day basis, most coders only use around 15 to 20 of them. Paragraph tags (<p>) are among the most common.

-- SuperHi

# Step 3: Add a heading

Next, you'll include a heading with your name. Heading tags go from <h1> (top of the hierarchy) down to <h6>.

<h1>Your Name</h1>
1

Heading tags wrap some text, so they need to be closed at the end. Only a few "self-closing" tags like <img> would not have this. Most of the time, you need to close your tags using the opening tag with a / in front.

Now that our name has a tag around it, we can refer to it as an "element".

Links are a key feature of the Web and are the key component of the idea of Hypertext, the "HT" in "HTML".

Often we will be linking to either another website, or a different page on our own website, but here we'll make a "mailto" link.

Create a mailto link, linking to your own student e-mail as shown.

<a href="mailto:youremail@missouristate.edu">youremail@missouristate.edu</a>
1

a here actually stands for "Anchor". This tag was originally meant to link within a document. Imagine a long Word document, with the ability to click around from one part of the document to another, these tags would "anchor" tags to those different parts. This is still 100% possible, but they've mostly been repurposed to create links between documents.

href stands for "Hypertext Reference." You can forget that information right now, just know that this is where we would put the identifier for what resource the browser should go to when the text inside the tag is clicked. Often, it would be URL like https://google.com. Here though, we're prepending an e-mail address with mailto: which will cause the user's default e-mail client to create a new e-mail with that address in the "To:" field.

# Step 5: Add a few sub-headings

Add your hometown and your major and emphasis (for most of you this will be "Graphic Design and Illustration" or one or the other, but if yours is different, I'd really like to know) as h3 tags.

<h3>Springfield, MO</h3>
<h3>Graphic Design</h3>
1
2

# Step 6: Add your goals for the class

To let me know a bit about what you're looking to get out of this class, add a goals section. Start off with an h2 tag.

<h2>My Goals</h2>
1

Then, add a p tag to summarize or introduce your goals. The "P" stands for paragraph.

<p>I want to imbue great wisdom to my students and also teach them HTML and CSS.</p>
1

Then, we'll make a Unordered List of some specific goals (at least 2 items please).

<ul>
    <li>Teach HTML</li>
    <li>Teach CSS</li>
    <li>Teach web design concepts</li>
</ul>
1
2
3
4
5

You'll see that the HTML structure of a list actually has a parent/child relationship. This is of utmost importance. A complicated HTML document will have tags nested inside tags inside tags inside tags... This structure is important to enabling the use of CSS effectively to layout your page.

ul starts and ends the list. li stands for "list item" and creates a bullet point for each <li> tag.

# Step 7: Let's style something real quick

Ok, we did a bunch of HTML, but let's go ahead and use CSS to style one thing.

In the CSS part of the pen, type the following code.

h1, h2, h3 {
    color: tomato;
}
1
2
3

That's your first CSS ruleset. color mostly affects text items, and here, I'm using a "named" CSS color. Typically, we would use "hex codes" or RGB values, but CSS named colors are a quick shortcut. Check out this list of CSS colors and pick your own.

We'll go over this in detail soon, but basically, with that CSS, we're saying any tag called h1, h2, or h3 we want to be the given color.

# Step 8: Send your pen my way

Codepen URLs are the same for editing as they are for viewing, so just copy the URL out of your browser's address bar and send it to me via Slack.

Last Updated: 11/25/2019, 2:20:51 AM