Prof. Peter Locharernkul

Three components:
HTML + CSS3 + JAVASCRIPT
(Content) (Presentation) (Interactivity)
- Proficiency in HTML5
- Understand web coding principles and practices
- Create an interactive website that will run on multiple devices/screens from scratch
Code Editors:
Please download and install a code editor at home!
Tags are containers of content.
<tag>Place Content Here</tag>
An HTML document is collection of tags.
Content within the tags is referred to as 'elements'
Tags can be nested inside other tags.<!DOCTYPE html>
<html><head><html><title>Sample HTML</title></head>
<body>
</body>
<h1> to <h6> Defines HTML headings
<p> Defines a paragraph
<b> Bold Text
<i> ItalicText

HTML Tags Reference
http://www.w3schools.com/

PUBLISHING A WEBSITE

PUBLISHING A WEBSITE
FDU has provided a server to host our projects.
host name: fducomputerclasses.org
user ID: contemporary_html
Password: Spring_2014 PUBLISHING A WEBSITE
The HTML document is now part of the Internet!
Access it through this URL:
ftp://fducomputerclasses.org/INITIALS/hello_world/index.html
Join:
www.trello.com<a> Defines a hyperlink
<ul> Defines an unordered list
<ol> Defines an ordered list
<li> Defines a list item
Class Exercise #1:
Create an HTML document based on a pdf document.
Create Two hyperlinks inside the HTML.
Upload into your individual 'projects' folder.
Provide the URL link to the HTML document.
Inserting Images into HTML
<img src="name.jpg" alt="image name">
<img> tags are self-closing
Class Exercise #2:
Insert Animal images into the HTML document.
Upload into your individual 'projects' folder.
Provide the URL link to the HTML document.Class Exercise #3:
Create an HTML document from recipe.pdf document.
Upload into your individual 'projects' folder.
Provide the URL link to the HTML document.