Copyright 2007, Information Builders. Slide 1 Understanding Basic HTML Amanda Regan Technical Director June, 2008.

Slides:



Advertisements
Similar presentations
Farhan Nisar University of Peshawar
Advertisements

Table, List, Blocks, Inline Style
WEB DESIGN TABLES, PAGE LAYOUT AND FORMS. Page Layout Page Layout is an important part of web design Why do you think your page layout is important?
Intro to HTML. HTML HTML = HyperText Markup Language Used to define the content of a webpage HTML is made up of tags and attributes Content.
HTML popo.
Introduction to HTML & CSS
HTML: HyperText Markup Language Hello World Welcome to the world!
HTML Overview - Cascading Style Sheets (CSS). Before We Begin Make a copy of one of your HTML file you have previously created Make a copy of one of your.
CHAPTER 7 STYLING CONTENT WITH CASCADING STYLE SHEETS.
A really fairly simple guide to: mobile browser-based application development (part 1) Chris Greenhalgh G54UBI / Chris Greenhalgh
Cascading Style Sheets. CSS stands for Cascading Style Sheets and is a simple styling language which allows attaching style to HTML elements. CSS is a.
Images, Tables, lists, blocks, layout, forms, iframes
17/10/11. 2  The form element ( ) is used to include a number of form elements together so that they can be referenced by some other code in order to.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
4.01 Cascading Style Sheets
Outline IS400: Development of Business Applications on the Internet Fall 2004 Instructor: Dr. Boris Jukic Table, Forms, Metatags and Frames.
Understanding HTML Style Sheets. What is a style?  A style is a rule that defines the appearance and position of text and graphics. It may define the.
HTML. Goals How to use the Komodo editor HTML coding and testing – List and Images – Tables and Links – At least 2 pages and navigation –
Basics of HTML.
HTML Web Programming.
HTML & CSS A brief introduction. OUTLINE 1.What is HTML? 2.What is CSS? 3.How are they used together? 4.Troubleshooting/Common problems 5.More resources.
HTML. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language.
Cascading Style Sheets (CSS) Instructor: Mr. Ahmed Al Astal ITGD4104 Department Requirement for senior student University of Palestine Faculty of IT.
Cascading Style Sheet Basics Pepper. Looking at the HTML See the surrounding tags See head, body, paragraph, header See the ending tags See the list.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
Web Technologies Website Development Trade & Industrial Education
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
Images (1) Three most popular formats – Graphics Interchange Format (GIF) – Joint Photographic Experts Group (JPEG) – Portable Network Graphics (PNG) –
Website Development with Dreamweaver
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
HTML: Tables & Frames Internet Technology1. HTML: Tables Table tags ► surround the entire table ► header row (text is boldfaced) ► surround each row ►
CSS CSS is short for C ascading S tyle S heets. It is a new web page layout method that has been added to HTML to give web developers more control over.
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,
XP Tutorial 9 1 Working with XHTML. XP SGML 2 Standard Generalized Markup Language (SGML) A standard for specifying markup languages. Large, complex standard.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
>> HTML: Structure Elements. Elements in HTML are either Inline or Block. Block-level Elements – Begins on a new line – Occupy the whole width – Stacks.
XHTML 1.1  Derived from Standard Generalized Markup Language (SGML) of ISO  XHTML concerned primary with content rather than presentation and style 
1 Week Four– Advance HTML 2 Dr. Fadi Safieddine. 2 Lecture Content Basic HTML Tables Using based Feedback form Creating and Using Image Maps Nested.
Introduction To HTML.  HTML stands for Hyper Text Markup Language.  HTML was developed by Tim Berners-Lee.  HTML is maintained by World Wide Web Consortium(W3C).
HTML Hyper Text Markup Language. Create TABLE in an HTML Tables are defined with the tag. A table is divided into rows (with the tag), and each row is.
DYNAMIC HTML What is Dynamic HTML: HTML code that allow you to change/ specify the style of your web pages. Example: specify style sheet, object model.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
Introduction to HTML UWWD. Agenda What do you need? What do you need? What are HTML, CSS, and tags? What are HTML, CSS, and tags? html, head, and body.
How to… Cascading Style Sheets. How to Insert a Style Sheet When a browser reads a style sheet, it will format the document according to it. There are.
XP Review 1 New Perspectives on JavaScript, Comprehensive1 Introducing HTML and XHTML Creating Web Pages with HTML.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
HTML5 Introduction to Web Programming. Plan of the course HTML5 Structure of a document Main HTML Tags –Headings –Paragraphs –Links –Tables –Forms –Images.
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
HTML Tutorial. What is HTML HTML is a markup language for describing web documents (web pages) HTML documents are described by HTML tags Each HTML tag.
objectives Learning WEB TECHNOLOGIES. Understanding Salient features of WEB TECHNOLOGIES. Designing of WEB PAGES on your own. Development of WEB APPLICATIONS.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
CASCADING STYLE SHEET CSS. CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to solve a problem.
HTML Basics Text, Images, Tables, Forms. HTML Structure HTML is comprised of “elements” and “tags” – Begins with and ends with Elements (tags) are nested.
Week 1: Introduction to HTML and Web Design
HTML Structure & syntax
Web Basics: HTML/CSS/JavaScript What are they?
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
Introduction to web design discussing which languages is used for website designing
CASCADING STYLE SHEET CSS.
Website Design 3
Basic HTML and Embed Codes
Introduction to HTML5.
Introduction to HTML.
Computer communications
Web Client Side Technologies Raneem Qaddoura
Web Programming and Design
Presentation transcript:

Copyright 2007, Information Builders. Slide 1 Understanding Basic HTML Amanda Regan Technical Director June, 2008

Copyright 2007, Information Builders. Slide 2 What is HTML?  Hypertext Markup Language  Used to create Web pages  Easy to understand and write

Copyright 2007, Information Builders. Slide 3 What is HTML?  Implemented by elements, which:  Control structure and behavior  Are not case sensitive  Generally consist of three parts:  Start tag, such as  Content  End tag, such as  May have assigned attributes 

Copyright 2007, Information Builders. Slide 4 What is HTML?  Root element HTML contains all other elements.  HTML documents consist of two basic parts:  Header section (HEAD element)  Contains information about the document  Must include a TITLE element  Body  Contains document’s actual content  BODY element, or  FRAMESET element

Copyright 2007, Information Builders. Slide 5 The HEAD Element  TITLE – required; displayed on browser’s top bar  BASE – specifies base pathname for all URLs  META – provides additional information about the document  SCRIPT – places a script inside the document

Copyright 2007, Information Builders. Slide 6 Design Elements

Copyright 2007, Information Builders. Slide 7 The SPAN Element  Identifies a generic inline element, such as informational text.  To generate a SPAN element:

Copyright 2007, Information Builders. Slide 8 The IMG Element  Places an image on the page.  The src attribute is required.  To generate an IMG element:

Copyright 2007, Information Builders. Slide 9 Specifying Styles  Three ways to insert a CSS stylesheet:  External Style Sheet – used when the style is applied to many pages. Each page must link to the style sheet using the tag, which goes inside the head section.  Internal Style Sheet – used when a single document has a unique style. You define internal styles in the head section with the tag.  Inline Styles – used when a unique style is to be applied to a single occurrence of an element. The style attribute is placed inside the relevant tag, and it can contain any CSS property.

Copyright 2007, Information Builders. Slide 10 The style Attribute  Specifies properties for an inline stylesheet.

Copyright 2007, Information Builders. Slide 11 Data Handling Elements

Copyright 2007, Information Builders. Slide 12 The INPUT Element  Creates a variety of form input controls.  Type of control defined by the type attribute.  Default is text input.  From the Insert menu:

Copyright 2007, Information Builders. Slide 13 The IFRAME Element  Defines an inline frame within a document used for embedding an HTML document in a Web page.  Displays the content of an external document; may display scrolling devices.  From the toolbar:

Copyright 2007, Information Builders. Slide 14 The IFRAME Element (continued)  For example, specifying this frame property...

Copyright 2007, Information Builders. Slide 15 The IFRAME Element (continued) ... produces this HTML code:

Copyright 2007, Information Builders. Slide 16 The TABLE Element  Indicates a table.  Minimum elements are tr (table row) and td (table cells).  From the Insert menu:

Copyright 2007, Information Builders. Slide 17 The FORM Element  Contains controls for collecting user input.  The action attribute (required) specifies the URL of the program that will process the form.  From the toolbar:

Copyright 2007, Information Builders. Slide 18 The FIELDSET Element  Groups related form controls and labels.  From the toolbar:

Copyright 2007, Information Builders. Slide 19 The SELECT Element  Defines a multiple choice menu or a scrolling list box.  From the toolbar:

Copyright 2007, Information Builders. Slide 20 Putting It All Together  Demo: build a simple launch page

Copyright 2007, Information Builders. Slide 21 And finally...  Questions?