HTML tutorial. Purpose: Importance: Very few people code HTML by hand anymore. There are a multiplicity



Similar documents
Basic Website Maintenance Tutorial*

Web Design with Dreamweaver Lesson 4 Handout

ADOBE DREAMWEAVER CS3 TUTORIAL

Using IIS and UltraDev Locally page 1

Step by step guides. Deploying your first web app to your FREE Azure Subscription with Visual Studio 2015

CREATING WEB PAGES USING HTML INTRODUCTION

Lab: Create Your Own Homepage! This exercise uses MS Expression Web as a Web Page creation tool. If you like you

Contents. This document contains the following sections:

Microsoft Expression Web

Dreamweaver CS6 Basics

Basic Website Creation. General Information about Websites

Copy/Paste Best Practices. Identifying Issues Caused by Copy/Paste. Blackboard General Tutorial

Creating Personal Web Sites Using SharePoint Designer 2007

Further web design: HTML forms

Microsoft FrontPage 2003 Creating a Personal Web Page

Adobe Dreamweaver CC 14 Tutorial

What Do I Need To Create My Webpage?

Creating Web Pages with Netscape/Mozilla Composer and Uploading Files with CuteFTP

COMMON CUSTOMIZATIONS

Joomla! 2.5.x Training Manual

Go Kiwi Internet Content Management System Version 5.0 (K5) TRAINING MANUAL

Basic Web Fullerton College

Basic tutorial for Dreamweaver CS5

Creating your personal website. Installing necessary programs Creating a website Publishing a website

What is a Web Browser? Web Site Functionality. A client program that uses HTTP to communicate with web servers.

File Manager User Guide

Dreamweaver. Introduction to Editing Web Pages

A send-a-friend application with ASP Smart Mailer

Surfing the Internet. Dodge County 4-H Tech Team January 22, 2004

ICT 6012: Web Programming

Working with the Ektron Content Management System

Create a GAME PERFORMANCE Portfolio with Microsoft Word

Advanced Drupal Features and Techniques

Create a Web Page with Dreamweaver

DREAMWEAVER BASICS. A guide to updating Faculty websites Created by the Advancement & Marketing Unit

Caldes CM12: Content Management Software Introduction v1.9

Microsoft Word 2010 Tutorial

TUTORIAL 4 Building a Navigation Bar with Fireworks

TIME SCHEDULE OBJECTIVES

HOW TO PURCHASE AND INSTALL YOUR VERISIGN DIGITAL SIGNATURE

Importing a Text File into Respondus

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March

Creating HTML authored webpages using a text editor

Mojo Matrix Training Guide

Page Formatting In Microsoft Word XP

UNPAN Portal Content Management System (CMS) User Guide

Mastering the JangoMail EditLive HTML Editor

OUTLOOK WEB APP (OWA): MAIL

Intro to Web Development

Website Development Komodo Editor and HTML Intro

Introduction to Macromedia Dreamweaver MX

So we're set? Have your text-editor ready. Be sure you use NotePad, NOT Word or even WordPad. Great, let's get going.

MS Word 2007 practical notes

Microsoft Word 2013 Tutorial

File Management in Windows Explorer

Web App Development Session 1 - Getting Started. Presented by Charles Armour and Ryan Knee for Coder Dojo Pensacola

Learnem.com. Web Development Course Series. Quickly Learn. Web Design Using HTML. By: Siamak Sarmady

Microsoft Word 2013 Creating a Personal Web Page (Level 2)

Chapter 19. Developing Course and Laboratory Homepages for the World Wide Web

CREATING A NEWSLETTER IN ADOBE DREAMWEAVER CS5 (step-by-step directions)

SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1

Creating an HTML Document Using Macromedia Dreamweaver

Paperless Meeting Software Installation Instructions

Talking: Web. Web design is the hardest thing you will ever do in life. At least when you do it for the first time. Home Page. Talking: Resources

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

ITP 101 Project 3 - Dreamweaver

Shared Hosting. Getting Started Guide. Your First Website Online. Shared Hosting// Getting Started Guide

Your First Web Page. It all starts with an idea. Create an Azure Web App

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE WEB EDITING

RIT Message Center Compose and Send Messages

Creating a Resume Webpage with

PowerPoint 2013: Basic Skills

Lesson Overview. Getting Started. The Internet WWW

Quick Start Guide. Installation and Setup

Access to Moodle. The first session of this document will show you how to access your Lasell Moodle course, how to login, and how to logout.

Working With Your FTP Site

LIS 534 Lab: Internet Basics

GETTING STARTED TABLE OF CONTENTS

HTML5 and CSS3 Part 1: Using HTML and CSS to Create a Website Layout

Setting Up Dreamweaver for FTP and Site Management

Adobe Dreamweaver Student Organizations Publishing Details Getting Started Basic Web Page Tutorial For Student Organizations at Dickinson College *

Site Maintenance. Table of Contents

Development Environments and Content Management Systems for the HTML/CSS Beginner

Use your mobile phone as Modem. Intel Easy Steps Intel Corporation All rights reserved.

Introduction to OpenOffice Writer 2.0 Jessica Kubik Information Technology Lab School of Information University of Texas at Austin Fall 2005

GETTING STARTED WITH FLEXI-CLOUD

Publishing Your Website Using MS-FTP (for Windows Users)

Sending event blasts from Lyris

Website 101. Yani Ivanov. Student Assistant / Web Administrator

Web Editing Basics 1 TOPICS

Lab 1.3 Basic HTML. Vocabulary. Discussion and Procedure

Lab 1: Create a Personal Homepage

Chapter 11 Web Development: Importing Gifs and Backgrounds

No restrictions are placed upon the use of this list. Please notify us of any errors or omissions, thank you,

Mozilla Mail. Created by Holly Robertson and Quinn Stewart Spring 2004 IT Lab, School of Information University of Texas at Austin

Search help. More on Office.com: images templates

Web Hosting Training Guide. Web Hosting Training Guide. Author: Glow Team Page 1 of 28 Ref: GC278_v1.1

Using an external style sheet with Dreamweaver (CS6)

Networking At UW, The Internet And Beyond

How to Create Pages Editing the Home Page two column layout.

Transcription:

HTML tutorial Purpose: Introduce you to basic web page coding. This is a basic tutorial which will prepare you for the use of more sophisticated HTML editing tools. Importance: Very few people code HTML by hand anymore. There are a multiplicity of programs such as DreamWeaver and Microsoft Front Page which help make the process of web page creation easier. BEFORE you learn to use these tools, it is important to learn the basic structure and components of the code/language. This will come in handy when you need to troubleshoot code which editing tools can't fix. Goals: After this activity, you will be able to: Set up your server account to serve your personal web page Build a basic text web page Format and stylize your web page font Add images to your web page Add and control hyperlinks

STEP 1: SETTING UP YOUR SERVER ACCOUNT TO HOST YOUR WEB FILES You will be creating HTML (Hyper Text Markup Language) documents. These are the files/instructions a browser (i.e. Netscape/Internet Explorer) reads and uses to show web pages. In order to create your own home you need to place your HTML (Hyper Text Markup Language) documents in a world readable directory named "www" in your home directory (on your server account). This directory is automatically created for new accounts, so in most cases you should not need to create it. If it DOES NOT exist (You do not have to do this right now, but can hop over on one of the server machines if you would like to check/do this), open the server and create this directory, using the following commands: cd mkdir -p www fs sa www system:anyuser rl This creates a directory named www into which you will place all file relating to your homepage. Now, within that directory, you have to create a file (home.html) written in html format. Note that HTML documents MUST end in ".html" or ".htm". We will use ".html" as our standard. Once you have created your home.html file, the URL for that page (your home page) would be: http://web.mit.edu/username/www/home.html. Anyone in the world can view this web page with a browser. STEP 2: MAKING THE "HTML" WEB FILES HTML files are text files which contain the code of a web page. Today you will learn how to program some basic HTML code. When beginning, it is best to use a simple text editor such as notepad or emacs. You can open notepad in the following way: 1. Click on the Start Button 2. Click on Run 3. Type in: notepad 4. Press ENTER on the keyboard The notepad window should pop up, if not, ask for help.

STEP 3: LAYING OUT THE BASIC STRUCTURE OF THE PAGE HTML files have a basic structure that you MUST work within. Before you begin the tutorial you should type or copy/paste the following 8 lines from this screen into the text file (file you have open in notepad): <html> <head> <title>my HOME PAGE NAME</title> </head> <body> THIS IS WHERE THE CODE FOR BODY (WHAT YOU SEE IN NETSCAPE/INTERNET EXPLORER) OF THE WEB PAGE GOES. </body> </html> The text/bracket combinations are called tags. Note they come in pairs. There is always a beginning tag (<title>) and an end tag (</title>). The beginning tag signals Netscape / Internet Explorer that a new tag/task is starting. The end tag tells Netscape / Internet Explorer that the tag/task has ended. You will learn more about these in the tutorial. Save the above file to the desk top of your computer as: home.html. Make sure to add the extension ".html" to the end of the file!!!!! STEP 4: OPENING THE HTML FILE IN NETSCAPE/INTERNET EXPLORER Now you can view the results of your work: 1. Go to or open Netscape/Internet Explorer 2. File > Open or Open Page 3. Press the Choose or Browse button 4. Browse to the desktop and double click on home.html 5. Click Open/OK to load the file If this did not work, ask for help.

STEP 5: MAKING YOUR FILES READABLE ON THE WWW To make your files accessible to the world (later on), you must store them in your server account (You do not have to do right now, but you could ftp the file to the server if you wanted) within the www file. Later on, you can use Emacs or other text editor on the server to edit the home.html file. STEP 6: USING NETSCAPE/INTERNET EXPLORER AND THE TEXT EDITOR TO UPDATE AND VIEW THE RESULTS VERY IMPORTANT!!!!! Instead of copying and pasting the text from the tutorial into the Netscape/Internet Explorer browser text window (as suggested in the "TRY IT YOURSELF SECTIONS!" of the tutorial), you should paste the code into your home.html (inside notepad) file. You can then reload the file into Netscape/Internet Explorer to see the results: 1. Select the text from the tutorial you wish to copy 2. Copy the text by pressing: Ctrl+C (the control and c key simultaneously) 3. Switch to notepad 4. Place the cursor where you want to paste the text 5. Paste the text by pressing Ctrl+V 6. Modify the text/code if you need to 7. Save the file 8. Load the file into Netscape/Internet Explorer, OR if you are already viewing the file in Netscape/Internet Explorer, press the reload (called refresh in Internet Explorer) button to view the page with changes. Use this procedure to obtain experience in using a text editor and Netscape / Internet Explorer to write and debug your pages.

STEP 7: RUN THE TUTORIAL Start the tutorial at: http://www.davesite.com/webstation/html/index.shtml. Your job today is to finish chapters 1-5 of the tutorial on HTML. Chapter 0 is not necessary. YOU WILL HAVE TO MOVE FAST TO FINISH THIS!!! - Ch. 1: The Basics [What a tag is, Document Structure] - Ch. 2: The Common Tags [Headings and Horizontal Ruled Lines] - Ch. 3: More Common Tags [Paragraphs, Text Formatting, ALIGN, and Line Break] - Ch. 4: Links and Images - Ch. 5: A Little More Tags [Centering, BODY, etc.]