What is HTML? zThe authoring language of the Web is currently HTML, which stands for HyperText Markup Language. zFuture versions of the Web are likely.

Slides:



Advertisements
Similar presentations
Introduction to Web Design Lecture number:. Todays Aim: Introduction to Web-designing and how its done. Modelling websites in HTML.
Advertisements

HTML Basics Customizing your site using the basics of HTML.
Computers: Tools for an Information Age Writing Your Own Web Page: Using HTML and Web Authoring Tools.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
The Client-Server Model for the Web 1. A Web Client (usually in the form of a web browser) makes an HTTP request to a specific web server. 2. The Web Server.
Project 1 Introduction to HTML.
HTML Hypertext Markup Language –First proposed by CERN in 1989 –It is non-linear so it allows you to jump from place to place –Markup refers to the structure.
What is HTML? zThe authoring language of the Web is currently HTML, which stands for HyperText Markup Language. zFuture versions of the Web are likely.
1 * The World Wide Web * HTML Basics Internet 1: The World Wide Web.
Add Images Making your HTML more exciting Getting Images zFind on the Internet zMake ourselves zDigitize.
Introduction to HTML 2006 CIS101. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
Add Images, Color & Extras Making your HTML more exciting.
Creating a Web Page HyperText Markup Language. HTML Documents  Created using any text editor  Notepad  Vi, Pico, or Emacs  If using word-processor,
More HTML Stuff Making your HTML more exciting HTML -- Let’s Review zHTML’s basic four tags z.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
Developing a Basic Web Page with HTML
Dreamweaver 8 Concepts and Techniques Introduction Web Site Development and Macromedia Dreamweaver 8.
1st Project Introduction to HTML.
Glencoe Digital Communication Tools Create a Web Page with HTML Chapter Contents Lesson 4.1Lesson 4.1 Get Started with HTML (85) Lesson 4.2Lesson 4.2 Format.
HTML 1 Introduction to HTML. 2 Objectives Describe the Internet and its associated key terms Describe the World Wide Web and its associated key terms.
Chapter ONE Introduction to HTML.
Creating a Simple Page: HTML Overview
What is HTML ? HyperText Markup Language. The authoring language of the Web is currently HTML, which stands for HyperText Markup Language. Future versions.
Adobe Dreamweaver CS5 Introduction Web Site Development and Adobe Dreamweaver CS5.
Chapter 16 The World Wide Web Chapter Goals Compare and contrast the Internet and the World Wide Web Describe general Web processing Describe several.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
HTML Structure & syntax
WEB DESIGN USING DREAMWEAVER. The World Wide Web –A Web site is a group of related files organized around a common topic –A Web page is a single file.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
Chapter 13-Tools for the World Wide Web. Overview Web servers. Web browsers. Web page makers and site builders. Plug-ins and delivery vehicles. Beyond.
Web Programming : Building Internet Applications Chris Bates CSE :
Just Enough HTML How to Create Basic HTML Documents.
1 John Magee 9 November 2012 CS120 Lecture 17: The World Wide Web and HTML Web Publishing.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
Week 1 – Beginners Content McAfee & Big Fish Games CoderDojo.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
Started Getting started with HTML Authoring Authoring on the Web.
HTML BTEC National in Computing Section5. Create Information “HTML: defining HTML, discussing HTML uses and demonstrating HTML basics, HTML structure…..
Slide No. 1 Slide No. 1 HTML and Web Publishing CS 104 CS 104.
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
2.1 XHTML. Motto High thoughts must have high language. –Aristophanes.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HTML Concepts and Techniques Fifth Edition Chapter 1 Introduction to HTML.
Chapter 1 Introduction to HTML, XHTML, and CSS HTML5 & CSS 7 th Edition.
Writing Your Own Web Page: Using HTML and FrontPage Chapter 10.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
Computer Basics Introduction CIS 109 Columbia College.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
HTML Structure & syntax
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Web Site Development and Macromedia Dreamweaver 8
Chapter 1 Introduction to HTML.
Project 1 Introduction to HTML.
Chapter 1 HTML, XHTML, and the World Wide Web
Introduction to HTML- Basics
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
An Introduction to HTML Pages
Web Programming : Building Internet Applications Chris Bates CSE :
Presentation transcript:

What is HTML? zThe authoring language of the Web is currently HTML, which stands for HyperText Markup Language. zFuture versions of the Web are likely to be based on XML which stands for eXtensible Markup Language

HTML: What is it? zHTML is a document layout and hyperlink specification language zHTML defines the syntax and placement of special, embedded directions (called “tags”) that are not displayed by the client browser zHTML is concerned with the STRUCTURE of a document, not so much the APPEARANCE of that document

HTML files and tags zHTML files are simple ASCII files (aka “text files”) containing “embedded tags” describing the document layout of content authored by you zHTML “embedded tags” are directions to the browser (e.g. Firefox, Safari, or Internet Explorer) The browser uses the information inside the HTML tags to decide how to display or treat that content yEx: the tag specifies the title you choose to use for the document

What HTML is not zNot a word processing tool zNot a desktop publishing solution zNot a programming language Its fundamental purpose is to “mark up” the structure and appearance of documents and document families so that they may be delivered efficiently and effectively over a distributed network.

HTML does not support things like  Sound, motion, video  User interactions  Counters and market information But these applications can be accomplished through external programming tools that run “under” HTML. (plugins)—heard of Flash?

Who Governs HTML Development? zBegan as informal specification- Now used by millions zNeeded formal organizational blessing of -- yWorld Wide Web Consortium (W3C) xW3C manages the HTTP (HyperText Transfer Protocol) standard and markup languages that address that standard yIETF (Internet Engineering Task Force)— xdefines the technology behind the Internet and WWW

Tools for Web Authors zThe minimum: an editor, a browser and if possible an Internet connection zHTML editor or word processor? Your decision (both have advantages): xEditors (pure ASCII) support “raw HTML coding” (aka “markup”) xWP supports content development – (esp. spell check, thesaurus lookup, outlining)

Why not use a Web Authoring Toolkit? FrontPage, DreamWeaver, even MS-Word automatically translate your text into HTML. Why not take the easy road? yNot all adhere to latest W3C standards ySome may not render well across different browsers yMost WYSIWYG HTML editors don’t have up-to-date built in browsers (so they may give misleading displays) yYou can lose control over your document space…

HTML -- Let’s Start zHTML’s basic four tags z

HTML zContainer vs empty tags zContainer ; zEmpty zAttributes (modify HTML tags) z zFour attributes (src, height, width, alt)

HTML - Heading/Paragraph zHeading Elements - varies font size zLevels 1 (largest) to 6 (smallest) z zInserts a line break before and after zParagraph Tag z zInserts a line break before and after

HTML -- More Tags zLine Break Tag z zManual line break zText formatting z

HTML – Align Attributes zAlign Attribute zModifies horizontal position of text zleft zright zcenter zjustify

Enough already! Let’s get started You become the publisher

Links zLinks are created by the Anchor Tag yThis is the tag also known as a href for Hypertext Reference yAnchor tag is the HTML feature that defines both the source and destination of a hyperlink

Links (continued) zLinks/Hyperlinks zfile in same directory zfile in different directory; same machine zfile on another website zsend

Links zLink examples z File z Google z

HTML -- Lists zLists zOrdered -- numbered zUnordered -- bulleted zDefinition

Add Images Making your HTML more exciting

Images zPut this in your file for image display z zMake it a link z

Getting Images zFind on the Internet zMake ourselves zDigitize

Getting Images zFree or Fee -- be careful zhttp://webcom.missouri.edu/ilibrary/ zhttp:// zhttp:// zhttp:// zOthers you have used???

Getting Images zYou create ySoftware packages xPhotoshop, PaintShop Pro, PrintShop yCheck out products on Amazon.com xBig Box of Art

Images for web pages zConsider format y.tif – large, bitmap y.jpg – smaller, photographs, many colors y.gif – usually small, drawings/logos/icons, –Animated gifs, fewer colors than jpgs yOthers– example.png but some image formats don’t work with all browsers

zHTML -- Color zColor zPredefined Color Names zRGB color values (lots of charts on Web)charts