Building Your First Web Page - Learn To Code HTML & CSS
Building Your First Web Page - Learn To Code HTML & CSS
CSS
Lesson 4 Within this book I’m going to show you how to build your own websites using the two
Opening the Box Model most dominant computer languages—HTML and CSS. Common CSS Terms
Working with Selectors
Lesson 5 Before we begin our journey to learn how to build websites with HTML and CSS, it is Using CSS Resets
Positioning Content important to understand the differences between the two languages, the syntax of each
language, and some common terminology. SHARE
Lesson 6
Working with Typography What Are HTML & CSS?
Lesson 7 HTML, HyperText Markup Language, gives content structure and meaning by defining
Setting Backgrounds & that content as, for example, headings, paragraphs, or images. CSS, or Cascading Style
Gradients Sheets, is a presentation language created to style the appearance of content—using,
for example, fonts or colors.
Lesson 8
Creating Lists The two languages—HTML and CSS—are independent of one another and should
remain that way. CSS should not be written inside of an HTML document and vice versa.
Lesson 9 As a rule, HTML will always represent content, and CSS will always represent the
Adding Media appearance of that content.
Lesson 10 With this understanding of the difference between HTML and CSS, let’s dive into HTML
Building Forms in more detail.
Lesson 11
Organizing Data with Tables
Understanding Common HTML Terms
While getting started with HTML, you will likely encounter new—and often strange—
Lesson 12
terms. Over time you will become more and more familiar with all of them, but the three
Writing Your Best Code
common HTML terms you should begin with are elements, tags, and attributes.
Checkout Learn to Code (identified as <h1> through <h6> elements) and paragraphs (identified as the <p>
Advanced HTML & CSS for a element); the list goes on to include the <a>, <div>, <span>, <strong>, and <em>
Get Course
Tags
Recommendations
The use of less-than and greater-than angle brackets surrounding an element creates
what is known as a tag. Tags most commonly occur in pairs of opening and closing tags.
A closing tag marks the end of an element. It consists of a less-than sign followed by a
forward slash and the element’s name, and then ends with a greater-than sign; for
example, </div>.
The content that falls between the opening and closing tags is the content of that
element. An anchor link, for example, will have an opening tag of <a> and a closing tag
of </a>. What falls between these two tags will be the content of the anchor link.
1 <a>...</a>
2
Attributes
Attributes are properties used to provide additional information about an element. The
most common attributes include the id attribute, which identifies an element; the
class attribute, which classifies an element; the src attribute, which specifies a source
for embeddable content; and the href attribute, which provides a hyperlink reference to
a linked resource.
Attributes are defined within the opening tag, after an element’s name. Generally
attributes include a name and a value. The format for these attributes consists of the
attribute name followed by an equals sign and then a quoted attribute value. For
example, an <a> element including an href attribute would look like the following:
EDIT ON
HTML RESULT
SKIP RESULTS IFRAME
Shay Howe
The preceding code will display the text “Shay Howe” on the web page and will take
users to http://shayhowe.com/ upon clicking the “Shay Howe” text. The anchor element
is declared with the opening <a> and closing </a> tags encompassing the text, and the
hyperlink reference attribute and value are declared with
href="http://shayhowe.com" in the opening tag.
Fig 1.01
HTML syntax outline including an element, attribute, and tag
Now that you know what HTML elements, tags, and attributes are, let’s take a look at
putting together our first web page. If anything looks new here, no worries—we’ll
decipher it as we go.
All HTML documents have a required structure that includes the following declaration
and elements: <!DOCTYPE html>, <html>, <head>, and <body>.
The document type declaration, or <!DOCTYPE html>, informs web browsers which
version of HTML is being used and is placed at the very beginning of the HTML
document. Because we’ll be using the latest version of HTML, our document type
declaration is simply <!DOCTYPE html>. Following the document type declaration, the
<html> element signifies the beginning of the document.
Inside the <html> element, the <head> element identifies the top of the document,
including any metadata (accompanying information about the page). The content inside
the <head> element is not displayed on the web page itself. Instead, it may include the
document title (which is displayed on the title bar in the browser window), links to any
external files, or any other beneficial metadata.
All of the visible content within the web page will fall within the <body> element. A
breakdown of a typical HTML document structure looks like this:
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>Hello World</title>
6 </head>
7 <body>
8 <h1>Hello World</h1>
9 <p>This is a web page.</p>
10 </body>
11 </html>
12
EDIT ON
HTML CSS RESULT
SKIP RESULTS IFRAME
Hello World
This is a web page.
The preceding code shows the document beginning with the document type
declaration, <!DOCTYPE html>, followed directly by the <html> element. Inside the
<html> element come the <head> and <body> elements. The <head> element includes
the character encoding of the page via the <meta charset="utf-8"> tag and the title
of the document via the <title> element. The <body> element includes a heading via
the <h1> element and a paragraph via the <p> element. Because both the heading and
paragraph are nested within the <body> element, they are visible on the web page.
When an element is placed inside of another element, also known as nested, it is a good
idea to indent that element to keep the document structure well organized and legible.
In the previous code, both the <head> and <body> elements were nested—and indented
—inside the <html> element. The pattern of indenting for elements continues as new
elements are added inside the <head> and <body> elements.
Self-Closing Elements
In the previous example, the <meta> element had only one tag and didn’t
include a closing tag. Fear not, this was intentional. Not all elements consist of
opening and closing tags. Some elements simply receive their content or
behavior from attributes within a single tag. The <meta> element is one of
these elements. The content of the previous <meta> element is assigned with
the use of the charset attribute and value. Other common selfclosing elements
include
The structure outlined here, making use of the <!DOCTYPE html> document type and
<html>, <head>, and <body> elements, is quite common. We’ll want to keep this
document structure handy, as we’ll be using it often as we create new HTML
documents.
Code Validation
No matter how careful we are when writing our code, we will inevitably make
mistakes. Thankfully, when writing HTML and CSS we have validators to check
our work. The W3C has built both HTML and CSS validators that will scan code
for mistakes. Validating our code not only helps it render properly across all
browsers, but also helps teach us the best practices for writing code.
In Practice
As web designers and front-end developers, we have the luxury of attending a number
of great conferences dedicated to our craft. We’re going to make up our own
conference, Styles Conference, and build a website for it throughout the following
lessons. Here we go!
1 Let’s open our text editor, create a new file named index.html, and save it to a
location we won’t forget. I’m going to create a folder on my Desktop named
“styles- conference” and save this file there; feel free to do the same.
2 Within the index.html file, let’s add the document structure, including the
<!DOCTYPE html> document type and the <html>, <head>, and <body> elements.
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 </head>
5 <body>
6 </body>
7 </html>
8
3 Inside the <head> element, let’s add <meta> and <title> elements. The <meta>
element should include the proper charset attribute and value, while the <title>
element should contain the title of the page—let’s say “Styles Conference.”
1 <head>
2 <meta charset="utf-8">
3 <title>Styles Conference</title>
4 </head>
5
4 Inside the <body> element, let’s add <h1> and <p> elements. The <h1> element
should include the heading we wish to include—let’s use “Styles Conference”
again—and the <p> element should include a simple paragraph to introduce our
conference.
1 <body>
2 <h1>Styles Conference</h1>
3 <p>Every year the brightest web designers and front-end developers descend on Chicago to discuss the latest t
4 </body>
5
5 Now it’s time to see how we’ve done! Let’s go find our index.html file (mine is
within the “styles-conference” folder on my Desktop). Double-clicking this file or
dragging it into a web browser will open it for us to review.
Fig 1.02
Our first steps into building our Styles Conference website
Let’s switch gears a bit, moving away from HTML, and take a look at CSS. Remember,
HTML will define the content and structure of our web pages, while CSS will define the
visual style and appearance of our web pages.
Selectors
As elements are added to a web page, they may be styled using CSS. A selector
designates exactly which element or elements within our HTML to target and apply
styles (such as color, size, and position) to. Selectors may include a combination of
different qualifiers to select unique elements, all depending on how specific we wish to
be. For example, we may want to select every paragraph on a page, or we may want to
select only one specific paragraph on a page.
Selectors generally target an attribute value, such as an id or class value, or target the
type of element, such as <h1> or <p>.
Within CSS, selectors are followed with curly brackets, {}, which encompass the styles
to be applied to the selected element. The selector here is targeting all <p> elements.
1 p { ... }
2
Properties
Once an element is selected, a property determines the styles that will be applied to
that element. Property names fall after a selector, within the curly brackets, {}, and
immediately preceding a colon, :. There are numerous properties we can use, such as
background, color, font-size, height, and width, and new properties are often
added. In the following code, we are defining the color and font-size properties to be
applied to all <p> elements.
1 p {
2 color: ...;
3 font-size: ...;
4 }
5
Values
So far we’ve selected an element with a selector and determined what style we’d like to
apply with a property. Now we can determine the behavior of that property with a value.
Values can be identified as the text between the colon, :, and semicolon, ;. Here we are
selecting all <p> elements and setting the value of the color property to be orange and
the value of the font-size property to be 16 pixels.
1 p {
2 color: orange;
3 font-size: 16px;
4 }
5
To review, in CSS our rule set begins with the selector, which is immediately followed by
curly brackets. Within these curly brackets are declarations consisting of property and
value pairs. Each declaration begins with a property, which is followed by a colon, the
property value, and finally a semicolon.
It is a common practice to indent property and value pairs within the curly brackets. As
with HTML, these indentations help keep our code organized and legible.
Fig 1.03
CSS syntax outline including a selector, properties, and
values
Knowing a few common terms and the general syntax of CSS is a great start, but we
have a few more items to learn before jumping in too deep. Specifically, we need to take
a closer look at how selectors work within CSS.
Type Selectors
Type selectors target elements by their element type. For example, should we wish to
target all division elements, <div>, we would use a type selector of div. The following
code shows a type selector for division elements as well as the corresponding HTML it
selects.
CSS
1 div { ... }
2
HTML
1 <div>...</div>
2 <div>...</div>
3
Class Selectors
Class selectors allow us to select an element based on the element’s class attribute
value. Class selectors are a little more specific than type selectors, as they select a
particular group of elements rather than all elements of one type.
Class selectors allow us to apply the same styles to different elements at once by using
the same class attribute value across multiple elements.
Within CSS, classes are denoted by a leading period, ., followed by the class attribute
value. Here the class selector will select any element containing the class attribute
value of awesome, including both division and paragraph elements.
CSS
1 .awesome { ... }
2
HTML
1 <div class="awesome">...</div>
2 <p class="awesome">...</p>
3
ID Selectors
ID selectors are even more precise than class selectors, as they target only one unique
element at a time. Just as class selectors use an element’s class attribute value as the
selector, ID selectors use an element’s id attribute value as a selector.
Regardless of which type of element they appear on, id attribute values can only be
used once per page. If used they should be reserved for significant elements.
Within CSS, ID selectors are denoted by a leading hash sign, #, followed by the id
attribute value. Here the ID selector will only select the element containing the id
attribute value of shayhowe.
CSS
1 #shayhowe { ... }
2
HTML
1 <div id="shayhowe">...</div>
2
Additional Selectors
Selectors are extremely powerful, and the selectors outlined here are the most common
selectors we’ll come across. These selectors are also only the beginning. Many more
advanced selectors exist and are readily available. When you feel comfortable with
these selectors, don’t be afraid to look into some of the more advanced selectors.
All right, everything is starting to come together. We add elements to a page inside our
HTML, and we can then select those elements and apply styles to them using CSS. Now
let’s connect the dots between our HTML and CSS, and get these two languages working
together.
Referencing CSS
In order to get our CSS talking to our HTML, we need to reference our CSS file within our
HTML. The best practice for referencing our CSS is to include all of our styles in a single
external style sheet, which is referenced from within the <head> element of our HTML
document. Using a single external style sheet allows us to use the same styles across an
entire website and quickly make changes sitewide.
Other options for referencing CSS include using internal and inline styles. You
may come across these options in the wild, but they are generally frowned
upon, as they make updating websites cumbersome and unwieldy.
To create our external CSS style sheet, we’ll want to use our text editor of choice again
to create a new plain text file with a .css file extension. Our CSS file should be saved
within the same folder, or a subfolder, where our HTML file is located.
Within the <head> element of the HTML document, the <link> element is used to
define the relationship between the HTML file and the CSS file. Because we are linking to
CSS, we use the rel attribute with a value of stylesheet to specify their relationship.
Furthermore, the href (or hyperlink reference) attribute is used to identify the location,
or path, of the CSS file.
Consider the following example of an HTML document <head> element that references
a single external style sheet.
1 <head>
2 <link rel="stylesheet" href="main.css">
3 </head>
4
In order for the CSS to render correctly, the path of the href attribute value must
directly correlate to where our CSS file is saved. In the preceding example, the main.css
file is stored within the same location as the HTML file, also known as the root directory.
If our CSS file is within a subdirectory or subfolder, the href attribute value needs to
correlate to this path accordingly. For example, if our main.css file were stored within a
subdirectory named stylesheets, the href attribute value would be
stylesheets/main.css, using a forward slash to indicate moving into a subdirectory.
At this point our pages are starting to come to life, slowly but surely. We haven’t delved
into CSS too much, but you may have noticed that some elements have default styles
we haven’t declared within our CSS. That is the browser imposing its own preferred CSS
styles for those elements. Fortunately we can overwrite these styles fairly easily, which
is what we’ll do next using CSS resets.
CSS resets take every common HTML element with a predefined style and provide one
unified style for all browsers. These resets generally involve removing any sizing,
margins, paddings, or additional styles and toning these values down. Because CSS
cascades from top to bottom—more on that soon—our reset needs to be at the very top
of our style sheet. Doing so ensures that those styles are read first and that all of the
different web browsers are working from a common baseline.
There are a bunch of different resets available to use, all of which have their own fortes.
One of the most popular resets is Eric Meyer’s reset, which has been adapted to include
styles for the new HTML5 elements.
If you are feeling a bit more adventurous, there is also Normalize.css, created by Nicolas
Gallagher. Normalize.css focuses not on using a hard reset for all common elements, but
instead on setting common styles for these elements. It requires a stronger
understanding of CSS, as well as awareness of what you’d like your styles to be.
Cross-Browser Compatibility & Testing
In all there are a handful of things to be on the lookout for when writing CSS. The good
news is that anything is possible, and with a little patience we’ll figure it all out.
In Practice
Picking back up where we last left off on our conference website, let’s see if we can add
in a bit of CSS.
1 Inside of our “styles-conference” folder, let’s create a new folder named “assets.”
We’ll store all of the assets for our website, such as our style sheets, images,
videos, and so forth, in this folder. For our style sheets, let’s go ahead and add
another folder named “stylesheets” inside the “assets” folder.
2 Using our text editor, let’s create a new file named main.css and save it within the
“stylesheets” folder we just created.
3 Looking at our index.html file in a web browser, we can see that the <h1> and
<p> elements each have default CSS styles. Specifically, they each have a unique
font size and spacing around them. Using Eric Meyer’s reset, we can tone down
these styles, allowing each of them to be styled from the same base. To do this
let’s head over to Eric’s website, copy his reset, and paste it at the top of our
main.css file.
4 With our main.css file starting to take shape, let’s connect it to our index.html
file. Opening the index.html file in our text editor, let’s add the <link> element
within our <head> element, just after the <title> element.
5 Because we’ll be referencing a style sheet within the <link> element, let’s add the
relation attribute, rel, with a value of stylesheet.
6 We also want to include a hyperlink reference, using the href attribute, to our
main.css file. Remember, our main.css file is saved within the “stylesheets”
folder, which is inside the “assets” folder. Therefore, the href attribute value,
which is the path to our main.css file, needs to be
assets/stylesheets/main.css.
1 <head>
2 <meta charset="utf-8">
3 <title>Styles Conference</title>
4 <link rel="stylesheet" href="assets/stylesheets/main.css">
5 </head>
6
Time to check out our work and see if our HTML and CSS are getting along. Now opening
our index.html file (or refreshing the page if it’s already opened) within a web browser
should show slightly different results than before.
Fig 1.04
Our Styles Conference website with a CSS reset
Below you may view the Styles Conference website in its current state, as well as
download the source code for the website in its current state.
View the Styles Conference Website or Download the Source Code (Zip file)
Summary
So far, so good! We’ve taken a few big steps in this lesson.
Just think, you now know the basics of HTML and CSS. As we continue and you spend
more time writing HTML and CSS, you’ll become much more comfortable with the two
languages.
Now let’s take a closer look at HTML and learn a little about semantics.
Lesson 2
Getting to Know HTML
Select your topic of interest below and I will recommend a course I believe will provide
the best learning opportunity for you.
Front-end Web
Design & Product
Development Development
To stay up to date and learn when new courses and lessons are posted, please
sign up for the newsletter—spam free.