INLS161-001 | Spring 2018

Class Session: Wednesday Jan 31, 2018

HTML: The Structural Layer of Web Design


Preparation for this Session

Learning Web Design

For the first web development class, read from Learning web design : a beginner's guide to HTML, CSS, Javascript, and web graphics , 4th Edition.

  1. Chapter 4. Creating a Simple Page: (HTML Overview)
  2. Chapter 5. Marking Up Text
  3. Chapter 6. Adding Links

Atom is an open source cross platform text editor that works on Macs and Windows. That is my tool of choice when I am developing, so I will use it a lot this session. You can get Atom here.

Dreamweaver is also a very good text editor. You will need to have access to the Adobe Creative Suite to try it out: https://software.sites.unc.edu/software/adobe-creative-cloud/

If you have a Windows laptop, you might want to download Notepad ++. It is both useful and free.

You might want to download Brackets. It is cross-platform (it works on Macs and PCs).

I use Firefoxwhen I develop websites mainly because I have been using it for about 20 years. Chrome is good too. When I am demonstrating how to view source code or use developer tools, I will be doing it with Firefox and/or Chrome. Never Edge. never Safari.

Read over the class notes and do your best to memorize the bare minimum code for an HTML page.

top/reload prep panel

Here is a link to a directory of files that I will go over during today's lecture

HTML is the acronym for Hypertext Markup Language

Body and Head Tags

The fundamental structure of html is the two-part model of <head> and <body> . Every valid HTML page must include a head and a body.

The head and body can be thought of as "markup" content containers:

<head></head>
<body></body>

The browser display ignores white space and comments, so the block below will render the same as the block above:

<head>
     <!-- Head CONTENT goes here.-->
</head>

<body>
     <!-- Body CONTENT goes here.-->
</body>
  1. The head and body markup must be wrapped in open < and close > brackets.
  2. The markup and the brackets are called tags: <head> <body>
  3. The end tag has a forward slash between the first angle bracket and end tag name. </head> </body>
  4. The vast majority of html tags must have a start and end tag, but there are exceptions which we will cover later.
  5. Everything in brackets is invisible when viewed in a browser.
  6. The comments in the containers are in markup, so they are invisible, as well.
  7. To view the invisible parts of a web page, you can can right click on the browser window and choose "view source".

The HTML tag

Note the definite article "the". There are various html tags all of which can be an html tag. But we are specifically talking about the master every-thing-goes-in-here  primary HTML tag.

The head and body tag must be wrapped in the primary html tag container:

<html>
<head></head>
<body></body>
</html>

Doctype Declaration

A Doctype Declaration must be placed at the very beginning. It is one of those exceptions that does not require an end tag. The entire tag is contained in two brackets.

<!DOCTYPE html>
<html>
<head></head>
<body></body>
</html>

The Doctype is necessary for legacy reasons and because there are other types of documents, XML for example, which we will talk about in a later class. The curent html doctype is HTML5. The HTML5 doctype is implied. You do not need to put the 5 in the doctype declaration.

Final Required parts of code

There are just a few more requirements to make this a valid web page. We need to put a title in the head and we should put at least an h1 tag and an p tag in the body.

<!DOCTYPE html>
<html>
  <head>
    <title>Demo Web Page</title>
  </head>
  <body>
    <h1>Demo Web Page</h1>
    <p>
     This is a demo web page. It represents the bare minimum layout for a simple web page.
    </p>
  </body>
</html>

Text Editors

Online HTML Tutorials

Instructor

Lawrence Jones

Office hours by appointment.