Developing for the web requires at least 3 things pieces of software:
For our code editor, we will be using Visual Studio Code, which is a free (open source) code editor created and maintained by Microsoft. It also works on Windows, macOS, and Linux. Make sure you have downloaded and installed it on all the computers you will use for web development.
For our web client we will use the many web browsers we introduced in Week 1, namely:
There are many more, and you are highly encouraged to install as many as possible.
We will also need a web server to host our web pages and applications. Installing and running a web server can be complicated. Industry-grade web servers like Apache and nginx are free and can be installed and run on your local computer; however, they are much more complicated and powerful than anything we will need for hosting our initial web pages.
For our purposes, we will use one of the many simple node.js based HTTP servers. In order to use them, do the following:
cd my-website
For example, you can use the serve web server like this:
cd my-website
npx serve
Need to install the following packages:
serve@14.2.1
Ok to proceed? (y)
┌──────────────────────────────────────────┐
│ │
│ Serving! │
│ │
│ - Local: http://localhost:3000 │
│ - Network: http://10.7.133.229:3000 │
│ │
│ Copied local address to clipboard! │
│ │
└──────────────────────────────────────────┘
You can now open your web browser to http://localhost:3000
and browser your files.
This uses the http
protocol, and connects you to the special IP address
127.0.0.1
, also known as localhost
(i.e., you can also use http://localhost:3000
). The localhost IP address always
refers to this computer, and allows you to connect network clients to your own
machine. The final :3000
portion of the URL is a port number. Together,
http://127.0.0.1:3000
means connect using HTTP to my local computer on port 3000.
NOTE: the second External IP address will be different than the above, but 127.0.0.1 will always be correct.
When you are done testing your web site, stop the web server by pressing CTRL-C
in your terminal window. To run the server again, use npx serve
.
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.
When talking about HTML’s markup, we’ll often refer to the following terms:
<
and >
characters, for example the paragraph tab <p>
or the image tag <img>
.<h1>Chapter 1</h1>
. Here an element is made up of an <h1>
tag (i.e., opening Heading 1 tag), the text content Chapter 1
, and a closing </h1>
tag. These three components taken together create an h1
element in the document.name
or name="value"
, for example <p id="error-message" hidden>There was an error downloading the file</p>
. Here two attributes are included with the p
element: an id
with value "error-message"
(in quotes), and the hidden
attribute (note: not all attributes need to have a value). Full list of common attributes.&
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.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:
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.Now let’s try creating and loading this file in our browser:
my-website
my-website
named index.html
(the index.html
name is important, as it represents the main entry point to a directory of HTML files and other web resources)my-website/index.html
fileindex.html
filemy-website
directorynpx serve
(you must do this from within the my-website
directory)http://localhost:3000
in the URL barHello World!
in black text.Now let’s make a change to our document:
index.html
file so that instead of Hello World!
you have This is my web page.
index.html
file.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. Web browsers and servers disconnect from one another after processing a request/response.
There are many HTML elements you’ll learn and use, but the following is a good initial set to get you started.
You can see an example page that uses every HTML element here.
Information about the document vs. the document’s content goes in various metadata elements:
<link>
- links from this document to external resources, such as CSS stylesheets<meta>
- metadata that can’t be included via other elements<title>
- the document’s title<html>
- the document’s root element, containing all other elements<head>
- machine-readable metadata about the document<body>
- the document’s contentThese are organizational blocks within the document, helping give structure to the content and provide clues to browsers, screen readers, and other software about how to present the content:
<header>
- introductory material at the top of a document<nav>
- content related to navigation (a menu, index, links, etc)<main>
- the main content of the document. For example, a news article’s paragraphs vs. ads, links, navigation buttons, etc.<h1>, <h2>, ..., <h6>
- (sub) headers for different sections of content<footer>
- end material (author, copyright, links)We organize content into “boxes,” some of which have unique layout characteristics.
<div>
- a generic container we use to attach CSS styles to a particular area of content<ol>
- an ordered list (1, 2, 3) of list items<ul>
- an unordered list (bullets) of list items<li>
- a list item in an <ul>
or <ol>
<p>
- a paragraph<blockquote>
- an extended quotationWe also use elements within larger text content to indicate that certain words or phrases are to be shown differently:
<a>
- an “anchor” element, which will produce a hyperlink, allowing users to click and navigate to some other document.<code>
- formats the text as computer code vs. regular text.<em>
- adds emphasis to the text (often in italics)<span>
- another generic container, used to define CSS stylesIn addition to text, HTML5 also defines a number of rich media elements:
<img>
- an element used to embed images in a document.<audio>
- an element used to embed sound in a document.<video>
- an element used to embed video in a document<canvas>
- a graphical area (rectangle) used to draw with either 2D or 3D using JavaScript.We create dynamic web content and applications through the use of scripting:
<script>
- used to embed executable code in a document, typically JavaScript.