Class 2 – Feb 6

Today we will discuss

  1. Continue with the introduction HTML (structural markup)
  2. Introduction to the C-Panel admin interface
  3. Set up email accounts
  4. Upload a html document to the FTP server
  5. Lab-time (resume)

Assignment

  1. Complete welcome page (use design statement and image) – index.html
  2. Create a resume page – resume.html
  3. Create 3 logo options for website – logo-options.html
  4. Upload the 3 html documents to your server.
    • index.html,
    • resume.html
    • logo-options.html

Research 3 examples of websites used for inspiration/reference for your portfolio site


Brief review of January 30, 2015

HTML element consist of an opening tag, content and a closing tag.

The HTML Element

The HTML Element

Basic structure of an HTML document

HTML Basic Stucture

HTML Basic Stucture

It consists of 5 elements:
<html> . . . </html>
<head> . . . </head>
<title> . . . </title>
<body> . . . </body>
<h1> . . . </h1> and/or <p> . . . </p>

HTML describes the structure of a page or document.

HTML Comments are used to leave notes in the source document.

HTML Comment

HTML Comment

Heading Elements

<h1>Largest Heading</h1>
<h2> . . . </h2>
<h3> . . . </h3>
<h4> . . . </h4>
<h5> . . . </h5>
<h6>Smallest Heading</h6>

Text Elements
<p>This is a paragraph</p>

Empty Element - do not have text content.
<br /> (line break)
<hr /> (horizontal rule)
<img />

Image and Attributes
The syntax of defining an image:
<img src=”images/bluejay.jpg” alt=”Picture of a Blue Jay” />

This entry was posted in Uncategorized and tagged , , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *