Document Structure
HTML is the HyperText Markup Language. It allows us to write content in a document, just as we would in a file created by a word processor. Unlike a regular text file, it also includes structural and layout information about this content. We literally mark up the text of our document with extra information.
Terminology
When talking about HTML's markup, we'll often refer to the following terms:
content: any text content you want to include can usually be written as-is.
tag: separated from regular content, tags are special text (names) wrapped in
<
and>
characters, for example the paragraph tab<p>
or the image tag<img>
.element: everything from the beginning of an opening tag to the closing tag, for example:
<h1>Chapter 1</h1>
. Here an element is made up of an<h1>
tag (i.e., opening Heading 1 tag), the text contentChapter 1
, and a closing</h1>
tag. These three components taken together create anh1
element in the document.attribute: optional characteristics of an element defined using the style
name
orname="value"
, for example<p id="error-message" hidden>There was an error downloading the file</p>
. Here two attributes are included with thep
element: anid
with value"error-message"
(in quotes), and thehidden
attribute (note: not all attributes need to have a value). Full list of common attributes.entity: special text that should not be confused for HTML markup. Entities begin with
&
and end with;
. For example, if you need to use the<
character in your document, you need to use<
instead, since<
would be interpreted as part of an HTML tag.
is a single whitespace and&
is the&
symbol. Full list of named entities.
HTML Documents
The first HTML page ever created was built by Tim Berners-Lee on August 6, 1991.
Since then, the web has gone through many versions:
HTML - created in 1990 and standardized in 1997 as HTML 4
xHTML - a rewrite of HTML using XML in 2000
HTML5 - the current standard.
Basic HTML5 Document
Here's a basic HTML5 web page:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>My Web Page</title>
</head>
<body>
<!-- This is a comment -->
<h1>Hello World!</h1>
</body>
</html>
Let's break this down and look at what's happening.
<!doctype html>
tells the browser what kind of document this is (HTML5), and how to interpret/render it<html>
the root element of our document: all other elements will be included within<html>...</html>
.<head>
provides various information about the document as opposed to providing its content. This is metadata that describes the document to search engines, web browsers, and other tools.<meta>
an example of metadata, in this case defining the character set used in the document: utf-8<title>
an example of a specific (named) metadata element: the document's title, shown in the browser's title bar. There are a number of specific named metadata elements like this.<body>
the content of the document is contained within<body>...</body>
.<!-- ... -->
a comment, similar to using/* ... */
in C or JavaScript<h1>
a heading element (there are headings 1 through 6), which is a title or sub-title in a document.
On the Server
During the last couple of classes we learned how to create a simple web server using Node.js with the Express.js module. We will be using this code once again to create a local web server, which will be responsible for returning requests for our HTML document on the default route, ie "/".
NOTE: Try to familiarize yourself with these steps, as we will be doing this over and over in class, every time we wish to create a new web server. A more detailed guide can be found as a part of the Simple Web Server using Express.js documentation.
Make a directory on your computer called
test-server
Open Visual Studio Code and choose File > Open to open your newly created
test-server
folderCreate a new file called
server.js
Open the Integrated terminal useing the keyboard shortcut (ctrl +
`
) or select "View" -> "integrated terminal" from the top menu.Run the npm init command to generate your
package.json
file (you can choose all of the defaults)Run the command
npm install express
Enter the following code for your
server.js
fileconst express = require("express");
const app = express();
const HTTP_PORT = process.env.PORT || 8080;
const path = require("path");
// setup a 'route' to listen on the default url path
app.get("/", (req, res) => {
res.sendFile(path.join(__dirname,"/views/hello.html"));
});
// setup http server to listen on HTTP_PORT
app.listen(HTTP_PORT, function(){ console.log(`server listening on: ${HTTP_PORT} )});Create a new folder in
test-server
namedviews
Within the
views
folder, create a file calledhello.html
Open the newly created
hello.html
file and paste the html code from above and save the fileGo back to the Integrated terminal and type the command
node server.js
. You should see the message: "server listening on: 8080"Open your web browser (Chrome, Firefox, etc) and enter
http://localhost:8080
in the URL barMake sure you can see a new page with "Hello World!" in black text.
Updating your Document
Go back to your editor and change the
hello.html
file so that instead of "Hello World!" you have "This is my web page."Save your
hello.html
file.Go back to your browser and hit the Refresh button.
Make sure your web page now says "This is my web page."
Every time we update anything in our web page, we have to refresh the web page in our browser. The web server will serve the most recent version of the file on disk when it is requested.