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

HTML popo.
Introduction to HTML & CSS
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.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
HTML Minute University Richard Fisher 10/1/2001 HTML FSA Training2 HTML Overview  HTML  HyperText Markup Language.
HTML and Web Page Design Presented by Frank H. Osborne, Ph. D. © 2005 ID 2950 Technology and the Young Child.
Introduction to HTML CPS470 Software Engineering Fall 1998.
Basic HTML UCR Webmasters Support Group Derk Adams.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
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.
CSCI 1101 Intro to Computers
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
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.
Introduction to HTML 1 Basharat Mahmood, Department of Computer Science, CIIT, Islamabad, Pakistan.
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.
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.
CPT 499 Internet Skills for Educators Session Ten Class Notes.
CS 111 – Oct. 4 Web design –HTML –Javascript Commitment: –This week, read sections 4.3 – 4.5.
HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.
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.
Web programming Part 1: HTML 由 NordriDesign 提供
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.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
CS 100 Introduction to Web Page Construction and HTML.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
HTML – The Basics Rebecca Shillingburg
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
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.
Lab 3 Html basics.
INTRO TO WEB DEVELOPMENT html
HTML Basics.
HTML basics
Marking Up with XHTML Tags describe how a web page should look
Lecturer (Dept. of Computer Science)
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.
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Font tag and its attributes
Computers and Scientific Thinking David Reed, Creighton University
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
What is HTML?.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
HyperText Markup Language
HTML Basics Mr. Fazzalari.
Johan Ng and Muhammad Hazzry
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)