HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

HTML popo.
OULU ADVANCED RESEARCH ON SOFTWARE AND INFORMATION SYSTEMS Teppo Räisänen | Oulu University of Applied Sciences Facebook Markup Language - FBML Teppo Räisänen.
HTML. The World Wide Web Protocols Addresses HTML.
Teppo Räisänen LIIKE/OAMK 2010
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
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.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
CpSc 462/662: Database Management Systems (DBMS) (TEXNH Approach) HTML Basics James Wang.
HTML Web Programming.
DAT602 Database Application Development Lecture 14 HTML.
Programming I 2 nd lecture. Block-level and inline elements BlockInline block-level elements generally can contain text, data, inline elements, or other.
HTML (HyperText Markup Language)
HTML Hyper-Text Markup Language or tags. HTML is a “tag” language Open and close tags Tags identified with angle brackets Basic format content (shorthand.
1 Introduction to HTML Joshua S. Simon Collective Technologies.
CSCI 1101 Intro to Computers
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
Copyright © 2013 MyGraphicsLab / Pearson Education STRUCTURE AND HTML TAGS MyGraphicsLab: Adobe Dreamweaver CS6 ACA Certification Preparation for Web Communication.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
Exploring the Digital Domain HTML Basics. HTML Hypertext Markup Language Standard (ASCII) text with embedded format codes Most HTML tags are paired Tags.
What is Markup and Markup Languages? What is HTML? A Basic HTML Document Basic HTML Tags Tag Attributes and Text Formatting Tags Insert Hyperlinks Add.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Just Enough HTML How to Create Basic HTML Documents.
Hypertext Mark-Up Language Web Page Creation HTML.
HTML,DHTML & Javascript/Session1/1 of 39 Introduction and Basic Tags Session 1 of Using HTML, DHTML & JavaScript.
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
CS 111 – Oct. 4 Web design –HTML –Javascript Commitment: –This week, read sections 4.3 – 4.5.
HTML Basics Computers. What is an HTML file? *HTML is a format that tells a computer how to display a web page. The documents themselves are plain text.
CSE 409 – Advanced Internet Technology 1 DISCUSSION OF BASIC HTML TAGS.
Week 2: Building a Simple Website IMC 320 Web Publishing Spring 2011.
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
Building a Web Page. Create A New Folder  Right click on the desktop and select New / Folder  Name the folder playpen.
HTML tags and attributes By: Dennis Champagne. List of tags.
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 is a markup.
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
HTML – The Basics Rebecca Shillingburg
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
INT222 – Internet Fundamentals
Building a Web Page. A Brief History In 1989, Tim Berners-Lee invented the Web. To enable particle physics from around the world to organize and share.
HTML for web designing short course. What is an HTML File? HTML stands for Hyper Text Markup Language An HTML file must have an htm or html file extension.
HTML AN INTRODUCTION TO WEB PAGE PROGRAMMING. INTRODUCTION TO HTML With HTML you can create your own Web site. HTML stands for Hyper Text Markup Language.
INTRO TO WEB DEVELOPMENT html
HTML Basics.
Creating a Web Page CSC 121.
CGS 3066: Lecture 2 Web Development and HTML5
Web Development Part 1.
Marking Up with XHTML Tags describe how a web page should look
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
Creating a Web Page.
Server-Side Application and Data Management IT IS 3105 (Spring 2010)
Elements of HTML Web Design – Sec 3-2
HTML Intro.
Computers and Scientific Thinking David Reed, Creighton University
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
CGS 3066: Lecture 2 Web Development and HTML5
1 Introduction to XHTML.
Introduction to HTML- Basics
Html.
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
COMS 161 Introduction to Computing
Lesson 2: HTML5 Coding.
WJEC GCSE Computer Science
Marking Up with XHTML Tags describe how a web page should look
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003

© Richard L. Goldman 2 HTML HTML is a markup language that may include hypertext. Markup Language: A language that allows you to format a document by imbedding marks in it. Hypertext: An instruction imbedded in the text of a document that creates a links to another location.

© Richard L. Goldman 3 HTML Tags The formatting marks used in HTML documents are called “tags”. To form a tag, HTML commands are enclosed in angle brackets. Tags are used in pairs - a beginning tag and a closing tag..... A closing tags is identified with a leading slash (/).

© Richard L. Goldman 4 Web Page Sections Web Page Heading Body A web page is divided into two main sections: Heading Body

© Richard L. Goldman 5 Web Page Sections Web Page Heading Body The heading section includes the title and other objects used to describe web page properties. The body section contains the visible contents of the web page.

© Richard L. Goldman 6 Web Page with Tags <HTML> </HTML> Web Page <HEAD> </HEAD> <BODY> </BODY> Heading Body Tags are used to identify the page as HTML. Tags are used to identify each section. Tags are used to add the web page title. Tags are used to format the contents of the web page body. <TITLE>Mr. Goldman</TITLE> <H2>Welcome</H2> <P> <H3><I>Sample</I></H3> </P>

© Richard L. Goldman 7 Home Page HTML pages are saved as plain text (ASCII). The home page of a web site is saved with the name: index.htm

© Richard L. Goldman 8 HTML Tag Attributes Many HTML tags can be modified by the use of an attribute. Example: The tag will start a new paragraph. The tag can be modified with the attribute of align and the value of left, right, center, or justify. To right align a new paragraph you would enter:

© Richard L. Goldman 9 Web Page Creation Web pages can be: Coded with a text editor such a Microsoft Notepad. Coded with a word processor such as Microsoft Word – then saved as a text file. Created with a code-only web page editors such as Macromedia HomeSite. Created with a WYSIWYG web page editor such as Microsoft FrontPage or Macromedia DreamWeaver. Created with many types of applications (Word, Excel, PowerPoint, etc.) – then use “Saved as a Web Page” to create HTML code.

© Richard L. Goldman 10 Sample Web Pages Instructions: Click on a link below Click on the View menu Select Source Note the different HTML code in each Web page created in Notepad Web page created in FrontPage Web page created in Word

© Richard L. Goldman 11 List of HTML Tags ADDRESS - Address information APPLET - Java applet AREA - Hotzone in imagemap A - Anchor BASE - Document location BASEFONT - Default font size BIG - Larger text BLOCKQUOTE - Large quotation BODY - Document body BR - Line break B - Bold CAPTION - Table caption CENTER - Centered division CITE - Short citation CODE - Code fragment DD - Definition DFN - Definition of a term DIR - Directory list DIV - Logical division DL - Definition list DT - Definition term EM - Emphasized text FONT - Font modification FORM - Input form H1 - Level 1 header H2 - Level 2 header H3 - Level 3 header H4 - Level 4 header H5 - Level 5 header H6 - Level 6 header HEAD - Document head* HR - Horizontal rule HTML - HTML Document IMG - Images INPUT - Input field, button, etc. ISINDEX - Primitive search I - Italics KBD - Keyboard input LINK - Site structure* LI - List item MAP - Client-side imagemap MENU - Menu item list META - Meta-information* OL - Ordered list OPTION - Selection list option PARAM - Parameter for Java applet PRE - Preformatted text P - Paragraph SAMP - Sample text SCRIPT - Inline script* SELECT - Selection list SMALL - Smaller text STRIKE - Strikeout STRONG - Strongly emphasized STYLE - Style information* SUB - Subscript SUP - Superscript TABLE - Tables TD - Table cell TEXTAREA - Input area TH - Header cell TITLE - Document title* TR - Table row TT - Teletype UL - Unordered list U - Underline VAR - Variable * = Heading Tag