Creating web pages Chapter 2. Creating the first web page



Similar documents
Creating web pages Chapter 1. A brief introduction to the Internet and web pages

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

Creating web pages Chapter 3. HTML Basic Concepts

CREATING WEB PAGES USING HTML INTRODUCTION

Internet Technologies_1. Doc. Ing. František Huňka, CSc.

Intro to Web Development

IT3503 Web Development Techniques (Optional)

Module 6 Web Page Concept and Design: Getting a Web Page Up and Running

Introduction to Dreamweaver

Contents. Introduction Downloading the Data Files... 2

Web Design Specialist

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

IT3504: Web Development Techniques (Optional)

Outline. CIW Web Design Specialist. Course Content

ICT 6012: Web Programming

Smithsonian Institution Archives Guidance Update SIA. ELECTRONIC RECORDS Recommendations for Preservation Formats. November 2004 SIA_EREC_04_03

STATEMENT OF PURPOSE

Enduring Understandings: Web Page Design is a skill that grows and develops throughout the careful planning and study of software and design.

Getting Started with KompoZer

SITXICT001A Build and launch a website for a small business

Web Development. How the Web Works 3/3/2015. Clients / Server

Course Title: Multimedia Design

Marketing Product User s Guide Advanced Internet Technologies, Inc. AIT Center June 1, 2004

Adobe Dreamweaver Exam Objectives

Web Development I & II*

Basic Website Creation. General Information about Websites

Publishing a Website. That Nam Tran Ton

Creating Your Personal Website

1- Introduc+on to client- side Applica+ons Course: Developing web- based applica+ons

Microsoft Expression Web

How To Design The Web And The Internet

Mindshare Studios Introductory Guide to Content Management Systems

Lesson Overview. Getting Started. The Internet WWW

Creating an Intranet Website for Library & Information Services in an Organization

Developing Your Own Academic Website. SGD Professional Development Seminar February 28, 2014

Using Adobe Dreamweaver CS4 (10.0)

Oct 15, Internet : the vast collection of interconnected networks that all use the TCP/IP protocols

Programming exercises (Assignments)

KOMPOZER Web Design Software

Web Authoring. Module Descriptor

Xtreeme Search Engine Studio Help Xtreeme

Taking your HTML s to the Next Level. Presented by: Joey Trogdon, Asst. Director of Financial Aid & Veterans Affairs Randolph Community College

Lesson Review Answers

Web Extras. Customer Service Description. Version 3.0. February 26, 2002

Developing a Website. Chito N. Angeles Web Technologies: Training for Development and Teaching Resources

Using WS_FTP. This tutorial explains how to use WS_FTP, a File Transfer Program for Microsoft Windows. INFORMATION SYSTEMS SERVICES.

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE WEB EDITING

HTML and CSS. Elliot Davies. April 10th,

Introduction to XHTML. 2010, Robert K. Moniot 1

Unit- I Introduction and Web Development Strategies

What Do I Need To Create My Webpage?

Xerox Multifunction Devices. Verify Device Settings via the Configuration Report

Appspace 5.X Reference Guide (Digital Signage) Updated on February 9, 2015

Parallels Plesk Automation. Customer s Guide. Parallels Plesk Automation 11.5

WEB DEVELOPMENT IA & IB (893 & 894)

Course: CSC 224 Internet Technology I (2 credits Compulsory)

WebCT 4.x: HTML Editor

Web Design and Development I a.k.a. Fundamentals of Web Design and Development

UNPAN Portal Content Management System (CMS) User Guide

Joomla! 2.5.x Training Manual

4.2 Understand Microsoft ASP.NET Web Application Development

The World Wide Web: History

Request for Proposal. Organizational Background:

CST 150 Web Design and Development I Midterm Exam Study Questions Chapters 1-3

15 minutes is not much so I will try to give some crucial guidelines and basic knowledge.

USER GUIDE. Unit 4: Schoolwires Editor. Chapter 1: Editor

Web Design and Development ACS-1809

How To Use Dreamweaver With Your Computer Or Your Computer (Or Your Computer) Or Your Phone Or Tablet (Or A Computer)

1. Chat4Support Introduction

Course Duration: One hour Theory and 3 hours practical per week for 15weeks. As taught in 2010/2011 Session

Wiki Server. Innovative tools for workgroup collaboration and communication. Features


Introduction to Web Technologies

Course Descriptions for Focused Learning Classes

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

HP Web Jetadmin Database Connector Plug-in reference manual

IVHS Course Map: Introduction to Web Page Design (Summer, 2008) 1.a. 1.d

Technology in the Classroom Kidblog kidblog.org

Appendix H: Cascading Style Sheets (CSS)

Introduction to Web Technology. Content of the course. What is the Internet? Diana Inkpen

Short notes on webpage programming languages

Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University

FTP Use. Internal NPS FTP site instructions using Internet Explorer:

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS WEB DESIGN III: ADVANCED SITE DESIGN WEB 2812

Glogster.com. Type code from box above

Using the Content Management System

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation

Web Hosting Training Guide. Web Hosting Training Guide. Author: Glow Team Page 1 of 22 Ref: GC349_v1.1

How to Create and Send a Froogle Data Feed

TUTORIAL 4 Building a Navigation Bar with Fireworks

Installing the KX-P8420 or KX-PS8100 on Windows NT 4.0.

User Guide - Table of Contents

Saving work in the CMS Edit an existing page Create a new page Create a side bar section... 4

Dreamweaver Tutorial #1

Parallels Plesk Panel

How to create pop-up menus

CHAPTER 9: THE EVOLVING INTERNET

ITP 101 Project 3 - Dreamweaver

Transcription:

ESCUELA TÉCNICA SUPERIOR DE INGENIERÍA ICAI Chapter 2. Creating the first web page Cristina Puente, Rafael Palacios 2009-2010

HTTP (review) HTTP (Hyper-Text Transfer Protocol) is a communications protocol for transferring documents through a TCP/IP connection. It differs from other protocols such as FTP in implementing anonymous authentication. The upper layer of web servers is HTTP http://www.google.com http://www.iit.upcomillas.es/palacios/cursoweb/ protocol 2

HTML HTML (Hyper-Text markup Language) is a page description language, implemented as a subset of the older SGML HTML is just a series of instructions for specifying the visual characteristics of a document. HTML differs from other page description languages such as PostScript or PDF in: It is hyper-text (links) capable. (also PDF) Visual aspect of the document depends on user preferences (resolution, font size ) HTML does not produce an identical results for every user or device. file type http://www.iit.upcomillas.es/palacios/cursoweb/upload.html 3

HTML. Example Ejemplo de HTML: <HTML> <HEAD> <TITLE>Hola</TITLE> </HEAD> <BODY> <P>Hola mundo</p> <h1>hola mundo</h1> </BODY> </HTML> Fundamental syntax rule: <tag-name> paragraph </tag-name> 4

ESCUELA TÉCNICA SUPERIOR DE INGENIERÍA ICAI HTML editors

HTML editors Writing HTML directly is not difficult (easy rules) but quite cumbersome (likely to make mistakes, lots of typing, ) An HTML editor is a WYSISYG appliction that allows the programmer to work in graphical mode (like MS-Word) or in the HTML code. colors according to HTML syntax 6

Some HTML editors Commercial editors Dreamweaver (Adobe) Frontpage (Microsoft) Freeware editors Nvu (N-view). (www.nvu.com) KompoZer. (www.kompozer.net) 7

ESCUELA TÉCNICA SUPERIOR DE INGENIERÍA ICAI Basic HTML components

Main sections Document type Head Body The most important parameter within Head section is the title. The head may also contain keywords, language, styles The Body section contains all the information shown to the user. 9

Main Labels Title/Headings: Page title (defined within <head>): <title>my web page</title> Heading 1: <h1>1 Introduction</h1> Heading 2: <h2>1.2 Motivation</h2> Highlighting text: Bold: <b>bold text</b> Italics: <i>to be displayed in italics</i> Teletype (monospaced font): <tt>printf</tt> Size (warning: use relative definition): Small: <small>i'm small text</small> Big: <big>i'm large text</big> 10

Main Labels (2) Links: Relative link: More information can be found in the <a href= doc/norm.pdf >Norm</a>. More information can be found in the Norm. Absolute link: ipod is manufactured by <a href= http://www.apple.com/ >Apple</a>. ipod is manufactured by Apple. 11

ESCUELA TÉCNICA SUPERIOR DE INGENIERÍA ICAI Publishing in Internet

Public or Private An HTML document can be private (it is located inside the personal computer) or public (it is located in a web server connected to the Internet). Example of private document: Manuals in a CD- ROM. file:///d:/docs/manual.html Example of public document: Any web page accessible by a URL http://www.iit.upcomillas.es/pdf/memoiiting0506.pdf 13

Publishing a document In order to publish a document, it must be uploaded to a web server. Yahoo offers web space when creating a yahoo.com account http://es.geocities.yahoo.com/ Another possibility is to use Comillas' web server. Files can be uploaded through SIFO, then become accessible at: http://www.upcomillas.es/zonaalumnos/2008xxxxx/ It is necessary to upload the HTML web page along with all the directories and files referred in the web page (ex. images) As soon as the web page is uploaded in the server, it becomes accessible to the Internet. 14

Alberto Aguilera 23, E-28015 Madrid - Tel: +34 91 542 2800 - Fax: +34 91 559 6569 - http://www.icai.upcomillas.es