Creating web pages Chapter 3. HTML Basic Concepts



Similar documents
Web page design in 7 days!

Learnem.com. Web Development Course Series. Learn em. HTML Web Design in 7 days! By: Siamak Sarmady

Dreamweaver: Getting Started Website Structure Why is this relevant?

Contents. Downloading the Data Files Centering Page Elements... 6

NURSING 3225 NURSING INQUIRY WEB SITE DEVELOPMENT GUIDE BOOK

Website Development Komodo Editor and HTML Intro

Code View User s Guide

HTML and CSS. Elliot Davies. April 10th,

Creating web pages Chapter 2. Creating the first web page

How To Write A Web Page In Html

core HyperText Markup Language (HTML) Designing Documents for the World Wide Web

Caldes CM12: Content Management Software Introduction v1.9

Help on Icons and Drop-down Options in Document Editor

GUIDE TO CODE KILLER RESPONSIVE S

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

WYSIWYG Editor in Detail

FACULTY OF COMMERCE, OSMANIA UNIVERSITY

BLACKBOARD 9.1: Text Editor

Dreamweaver. Introduction to Editing Web Pages

Simply download Beepip from and run the file when it arrives at your computer.

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc mraymond@luminys.com

What is HTML? a)hyper Text Marking Language b) Hyper Text Machine Language c)hyper Text Middle Language d)hyper Text Markup Language

How To Create A Website In Drupal 2.3.3

Missing cat website HTML&CSS. The Mission:

How to Use the Text Editor in Blackboard

Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates

HTML Fails: What No One Tells You About HTML

WebCT 4.x: HTML Editor

any other form. the information on these sites is volatile and subject to constant changes. other records are created through these sites.

FOUNDATION OF INFORMATION TECHNOLOGY Class-X (TERM II)

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

Quick Start Guide To: Using the Sage E-marketing Online Editor

Differences between HTML and HTML 5

LaGuardia Community College Thomson Ave, Long Island City, New York Created by ISMD s Dept. Training Team. Overview

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE WEB EDITING

Joomla! 2.5.x Training Manual

{color:blue; font-size: 12px;}

Head and Body in Windows Internet

UNPAN Portal Content Management System (CMS) User Guide

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

<a href="document URL"... attributes-list>link Text</a>

Cut-to-the-Chase Series Web Foundations. HTML Assignment. By Eric Matthews Visit us at:

Coding HTML Tips, Tricks and Best Practices

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

Using Adobe Dreamweaver CS4 (10.0)

customer community Getting started Visual Editor Guide!

Web design 1: Introduction to creating a website using Dreamweaver MX

WYSIWYG Tips and FAQ

HTML Lesson 7. Your assignment:

New Perspectives on Creating Web Pages with HTML. Considerations for Text and Graphical Tables. A Graphical Table. Using Fixed-Width Fonts

Creating Web Pages with HTML Simplified. 3rd Edition

CREATING WEB PAGES USING HTML INTRODUCTION

How To Design An In Html (Html) And Html (Mailbox) Safely

Short notes on webpage programming languages

Garfield Public Schools Fine & Practical Arts Curriculum Web Design

Designing HTML s for Use in the Advanced Editor

Word Processing programs and their uses

Creating a Resume Webpage with

Basic tutorial for Dreamweaver CS5

Level 1 - Clients and Markup

Windows 95. 2a. Place the pointer on Programs. Move the pointer horizontally to the right into the next window.

Basic HTML Programming

BT CONTENT SHOWCASE. JOOMLA EXTENSION User guide Version 2.1. Copyright 2013 Bowthemes Inc.

Mastering the JangoMail EditLive HTML Editor

Web Design Revision. AQA AS-Level Computing COMP2. 39 minutes. 39 marks. Page 1 of 17

Creating Web Pages with Dreamweaver CS 6 and CSS

The Essential Guide to HTML Design

Quick Reference Guide

Please select one of the topics below.

Microsoft Expression Web Quickstart Guide

Web layout guidelines for daughter sites of Scotland s Environment

Language (HTML) Designing Documents for the World Wide Web

UHR Training Services Student Manual

How to Properly Compose HTML Code : 1

Umbraco v4 Editors Manual

Getting Started with KompoZer

1. Create a web page which will contain image of window layout as follows.

Advanced Web Design. Zac Van Note.

HTML, CSS, XML, and XSL

ICT 6012: Web Programming

WHITEPAPER. Skinning Guide. Let s chat Velaro info@velaro.com by Velaro

The Essential Guide to HTML Design

Chapter 2 HTML Basics Key Concepts. Copyright 2013 Terry Ann Morris, Ed.D

Chapter 2 Review Questions and Answers

7 th Grade Web Design Name: Project 1 Rubric Personal Web Page

Lecture 9 HTML Lists & Tables (Web Development Lecture 3)

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

Beginning Dreamweaver Zac Van Note

How to Use Swiftpage for Microsoft Excel

Mura CMS. (Content Management System) Content Manager Guide

MS Word 2007 practical notes

TabCaratteri=" abcdefghijklmnopqrstuvwxyz._~ABCDEFGHIJKLMNOPQRSTUVWXYZ";

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

How to Use Swiftpage for Microsoft Outlook

Dreamweaver Mail Forms: Using ritmail.cgi

Trademarks. Restricted Rights Legend Trapelo Road Waltham, MA

Introduction to Web Technologies

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move

Web Portal User Guide. Version 6.0

Transcription:

ESCUELA TÉCNICA SUPERIOR DE INGENIERÍA ICAI Chapter 3. HTML Basic Concepts Cristina Puente, Rafael Palacios 2009-2010

HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of markup tags HTML uses markup tags to describe web pages 2

HTML Every command is surrounded by <'s, and >'s <body> To end each command, put a back slash (/) in front of the ending tag </body> HTML isn't case sensitive, <title> is the same as <TITLE> Filename extension must be.htm or.html Each command might have attributes <body bgcolor="#ffffff" > 3

HTML Basic structure <html> <head> WEB </head> <body> CONTENIDO </body> </html> <title> Primera </title> 4

HTML, <head> Title tag: <title> primera web </title>. The title is what will show up in the very top of the window Meta tag: <meta name="language" content="es">. Provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable. Meta elements are typically used to specify page description, keywords, author of the document, last modified, and other metadata. <head> <meta name="description" content="free Web tutorials" /> <meta name="keywords" content="html,css,xml,javascript"/> <meta name="author" content="hege Refsnes" /> <meta http-equiv="content-type" content="text/ html;charset=iso-8859-1" /> </head> 5

HTML, <head> Script tag:<script language="javascript"> </script> <script language="javascript"> function alert(mensaje) { alert(mensaje) } </script> 6

HTML, <head> Script tag:<script language="javascript"> </script> <HTML> <head> <TITLE>alert 1</TITLE> <script language="javascript"> </script> </head> <BODY onload="alert('hi There!!! try this!')"> </BODY> </HTML> 7

HTML, <body> Body tag:<script language="javascript"> </script> The body element defines the document's body. All the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc. <body bgcolor="#ffffff" > <div id="layer1" style="position:absolute; left:0px; top:9px; width:773px; height:168px; z- index:3"> <div align="left"> <table width="100%" height="178" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="23%" rowspan="2"><img src="imagenes/logo.jpg" width="141" height="154"></td> </tr> </table> </div> </body> 8

HTML, <body> attributes Background= url : Specifies a background image for a document <body background="bgimage.jpg"> Bgcolor= #xxxxxx :Specifies the background color of a document <body bgcolor="#e6e6fa"> http://www.2createawebsite.com/build/hex-color-scheme-generator.html 9

HTML, <body> attributes text="color", Specifies the color of the text in a document link="color", Specifies the default color of unvisited links in a document alink="color", Specifies the color of an active link in a document vlink="color", Specifies the color of the visited links in a document <body background="bgrnd64.gif" text="#0c4a0c" link="#0c4a0c" vlink="#0c4a0c" alink="#0c4a0c"> 10

HTML, Text Paragraphs are defined with the <p> tag. Browsers automatically adds an empty line before and after paragraphs. Most browsers will display HTML correctly even if you forget the end tag <p>this is a paragraph</p> <p>this is another paragraph</p> Text alignment: <center> <p align=right> <p align=right> 11

HTML, Text Line breaks are defined with the <br> tag. Single tag <p>this is<br>a para<br>graph with line breaks</p> Blank space: &nbsp Block quotations, to achieve a block indentation in common visual browsers: <blockquote> 12

HTML, Text Horizontal rules: used to display lines across the screen <HR SIZE=1 WIDTH=100%> <HR SIZE=5 WIDTH=50%> <HR SIZE=25 WIDTH=75%> <HR SIZE=3 WIDTH=100%> <HR NOSHADE SIZE=1 WIDTH=100%> <HR NOSHADE SIZE=3 WIDTH=100%> <HR NOSHADE SIZE=10 WIDTH=20%> 13

HTML, Text <b>, </b> for bold <i>, </i> for italic <u>, </u> for underlined <strike>, <strike> for strikeout <sup>, </sup> for superscript <sub>, </sub> for subscript <tt>, </tt> for teletype <blink>, </blink> for blinking text (very annoying) 14

HTML, Text Example <b>en </b> <br> <i>un <p> <u>lugar </u> <br> DE LA <center> <p> <sub>mancha... 15

HTML, Text Character Code Character Code < < > > ç ç á á Ç Ç Á Á ü ü é é Ü Ü É É & & í Í ó Ó ú Ú Ñ í Í ó Ó ú Ú Ñ " " º º ª ª 16

HTML, Text The <font> tag specifies the font face, font size, and font color of text. <font> text </font> Attributes: Size:Specifies the size of text Color:Specifies the color of text Face:Specifies the font of text <font color="#993366" size="4" face="comic Sans MS, Arial, MS Sans Serif"> 123456789 </font> 17

HTML, Text The <basefont> tag specifies a default font-color, font-size, or font-family for all the text in a document. <basefont color="#006699" size="4" face="arial"> HOLA <font color="#993366" size="4" face="comic Sans MS, Arial, MS Sans Serif"> A TODOS 18

HTML, Text Marquee:element type which causes text to scroll up, down, left or right Attributes: Behaviour: Scroll - DEFAULT. Scrolls the text from right-to-left Slide - Same as Scroll except that the text stays there after the loop(s) if a loop(s) is set. Alternate - Text 'bounces' from the left side of the box to the right side. <marquee bgcolor="#006699" behavior="alternate" direction="right"> <font color="#ffffcc" size="5">ejemplo de marquesina </ font> </marquee> 19

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