What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG

Slides:



Advertisements
Similar presentations
Introduction to HTML. A Web Page is.. An ASCII (text) file.. Whose filename ends with.htm or.html –index.html or cookie-recipe.htm Contains HTML tags.
Advertisements

Session 2 Introduction to HyperText Markup Language 4 (HTML 4) Matakuliah: M0114/Web Based Programming Tahun: 2005 Versi: 5.
HTML popo.
CREATED BY : VIRAL M.KORADIYA. Anchor elements are defined by the element. The element accepts several attributes, but either the Name or HREF attribute.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
HTML popo.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
OMT II Mam Saima Gul. * Static web page * a web page with contents that remain fixed and unchanged once it has been created by the author Web server Client.
 2001 Deitel & Associates, Inc. All rights reserved. 1 Outline 9.1Introduction 9.2Markup Languages 9.3Editing HTML 9.4Common Tags 9.5Headers 9.6Text Styling.
Basic HTML UCR Webmasters Support Group Derk Adams.
Marking Up With Html: A Hypertext Markup Language Primer
HTML: PART ONE. Creating an HTML Document  It is a good idea to plan out a web page before you start coding  Draw a planning sketch or create a sample.
Basics of HTML.
Introduction to HTML. Topics HTML –What is HTML –Parts of an HTML Document –HTML Tags.
Define html document byusing Example : Title of the document The content of the document......
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.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
Chapter 4: Hypertext Markup Language Primer TECH Prof. Jeff Cheng.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
More Basic HTML. Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features Add alignments.
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.
15.2 More Basic HTML. More Basic HTML Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features.
HTML Basic I IST2101. Keep In Mind Programming can be time consuming. Plan ahead!
Course Content - Chapter 2 Introduction to HTML Introduction to a Text Editor as a web authoring tool Instructional Activity: Creating a webpage using.
Exploring the Digital Domain HTML Basics. HTML Hypertext Markup Language Standard (ASCII) text with embedded format codes Most HTML tags are paired Tags.
Explorers Guild April 27, What is HTML? Hypertext Markup Language (HTML) is the basic building block of the World Wide Web page. HTML files are.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Web Page Creation Part I ST: Introduction to Web Interface Design Prof. Angela Guercio.
Just Enough HTML How to Create Basic HTML Documents.
All you ever needed to know…and more!. H.T.M.L. HyperText Mark-up Language Web’s programming language All web browsers Set of instructions Written with.
HTML Basic IST2101. Keep In Mind Programming can be time consuming. Plan ahead!
Introduction HTML (Hypertext Markup Language) is used to create document on the World Wide Web. HTML is not a programming language, it is a markup language.
L. Anne Spencer (c) 2001 Basic Web Design Document, text, & layout formatting tags & attributes.
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.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HTML BASIC IST 210: Organization of Data IST210 1.
CONTENTS INCLUDES :- TEXT LAYOUT SKILLS TEXT LAYOUT SKILLS FONTS EFFECT FONTS EFFECT HEADING ON WEB PAGES HEADING ON WEB PAGES IMAGE / PICTURE IMAGE /
HTML Assoc. Prof. Rozinah Jamaludin 28 January 2010.
HTML – The Basics Rebecca Shillingburg
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
1 Introduction to HTML. 2 Definitions  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web.
HTML is the language that allows text and graphics to be displayed as Web pages. It is a set of special codes, called tags, that tells a browser application.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
HTML Basic IST 210: Organization of Data IST2101.
Basic Web Publishing M. Scott Gartner 7/15/98.
HTML Basics.
Marking Up with XHTML Tags describe how a web page should look
Lecturer (Dept. of Computer Science)
Fundamentals of Web Programming
HTML Programming Basic HTML text formatting.
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
INTRODUCTION TO HTML AND CSS
Creating a Home Page in HTML
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
Tag Basics.
Font tag and its attributes
Computers and Scientific Thinking David Reed, Creighton University
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Marking Up with XHTML Tags describe how a web page should look
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
INTRODUCTION TO HTML AND CSS
More Basic HTML 2 assignments: 1—complete the worksheet
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
HyperText Markup Language
HTML Basics Mr. Fazzalari.
AN INTRODUCTION BY FAITH BRENNER
Presentation transcript:

What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG BODY TAG  Define Terminology Tag, Attribute, and Whitespace Types of tags Container Tags Singleton Tags Appearance of Text using physical styles Bold, italics, underline Superscript, subscript Font tag and its attributes Text Structures Paragraphs, and line breaks Headings Horizontal rules Preformatted text Attributes of BODY tag text – foreground color for the entire document bgcolor – background color leftmargin, rightmargin, topmargin, bottommargin background – background image for the document

What is HTML? HTML is a document description or layout language HyperText Markup Language Action from text Instructions for displaying a document HTML is a document description or layout language It is not a programming language It is not case sensitive Documents are saved as .html

Structure of HTML Document <head> <title>Descriptive title for document</title> </head> <body> All contents to be displayed in the window goes here </body> </html> Head Section Body Section

Definition of Terminology Tags are reserved words that are between the opening and closing bracket (< and >); Tags are instructions. Tags consist of tag name followed by optional list of attributes all placed between the opening and closing bracket.

Definition of Terminology Syntax of tag <tagname attribute1= “value1” attribute2=“value2”> Attributes are reserved words that define or modify the behavior of a tag Whitespace, found in the source code, are vertical and/or horizontal spaces that are read as a single space by the browser.

Container Tags Container tags are tags that come in opening and closing pairs, where the closing tag is differentiated from its opening tag by a forward slash These tags work in pairs to block of text Block of text is a region within the document starting at a opening tag and ending at the matching closing tag

Singleton Tags Singleton tags are tags that doesn’t have a closing tag; no pair These tags effect where it is placed

Text formatting tags <b>…</b> <i>…</i> <u>…</u> <sup>…</sup> <sub>…</sub> <font>…</font>

Text Structure tags <p>…</p> or <p> <br> <h1>…</h1>, <h2>…</h2>, <h3>…</h3> ……… <h6>…</h6> <hr> (Horizontal Rule) <pre>…</pre> (Preformatted text)

Font tag and its attributes Attribute list  attributename=“value” <font color=“ ” size=“ ” face=“ ” >…</font> Standard color name Hexadecimal value 1 - 7 Arial, Courier, Times, Script, Georgia, etc

Hexadecimal value Color values consist of 6 characters of hexadecimal (Base 16) preceded by hash symbol (# pound) Each character in hexadecimal value, uses numbers 0-9 or characters A-F. 2 characters for Red, 2 characters for Green and 2 characters for Blue White  #ffffff Black  #000000

Attributes of <body> tag Foreground color for the entire document Background color for the document Background image file for the document <body text=“ ” bgcolor=“ ” background=“ ” leftmargin=“ ” rightmargin=“ ” topmargin=“ ” bottommargin=“ ”> ……………………. </body>