HTML.

Slides:



Advertisements
Similar presentations
Farhan Nisar University of Peshawar
Advertisements

MA foundation Creating webpages using XHTML (part 1) Simon Mahony CCH
Table, List, Blocks, Inline Style
HTML popo.
HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.
HTML: HyperText Markup Language Hello World Welcome to the world!
Chapter 2 HTML Basics Key Concepts
HTML Tables, Lists, Blocks, Colors, Styles
Creating and Editing a Web Page Using Inline Styles
Part 5 Introduction to CSS. CSS Display - Block and Inline Elements A block element is an element that takes up the full width available, and has a line.
Images, Tables, lists, blocks, layout, forms, iframes
XHTML and CSS Overview. Hypertext Markup Language A set of markup tags and associated syntax rules Unlike a programming language, you cannot describe.
XHTML and CSS Overview. Hypertext Markup Language A set of markup tags and associated syntax rules Unlike a programming language, you cannot describe.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
HTML Tags. Objectives Know the commonly used HTML tags Create a simple webpage using the HTML tags that will be discussed.
BASIC HTML TUTORIAL Amber Brady. HTML tags are keywords surrounded by angle brackets like HTML tags normally come in pairs like and The first tag in a.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
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.
MORE HTML REMEMBER TO SEARCH W3 SCHOOLS FOR MORE INFO.
Cascading Style Sheets Dreamweaver. Styles Determine how the HTML code will display Determine how the HTML code will display Gives designers much more.
Ahmed Mumtaz Mustehsan
HTML basics exercises.
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
1.  Describe the anatomy of a web page  Format the body of a web page with block-level elements including headings, paragraphs, lists, and blockquotes.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Title, meta, link, script.  The title looks like:  The tag defines the title of the document in the browser toolbar.  It also: ◦ Provides a title for.
CIS234A Lecture 9 Instructor Greg D’Andrea. Working with Table's Column Groups We've formatted the content of the table columns by modifying the attributes.
CHAPTER 1 HTML & HTML5 I อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา 1.
HTML CSS JAVASCRIPT. HTML - Stands for Hyper Text Markup Language HTML is a ‘language’ that describes web pages. This language is a collection of codes.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Copyright 2007, Information Builders. Slide 1 Understanding Basic HTML Amanda Regan Technical Director June, 2008.
IS1824: Introduction to Internet Multimedia Lecture 5: Layout in HTML Rob Gleasure
>> HTML: Structure Elements. Elements in HTML are either Inline or Block. Block-level Elements – Begins on a new line – Occupy the whole width – Stacks.
1 HTML Frames
Organization Components (Lists, Table & Frame) Wah Yan College (Hong Kong) Mr. Li. C.P.
HTML ( HYPER TEXT MARK UP LANGUAGE ). What is HTML HTML describes the content and format of web pages using tags. Ex. Title Tag: A title It’s the job.
CS-3432 Electronic Commerce Lecture – 7 Sikandar Shujah Toor
HTML Tags Lesson 2. What are HTML Tags?  Markup tags  Coded instructions that accompany the plain text of an HTML document  Syntax –Left wicket< –Tag.
Cascading Style Sheets CSS. Source W3Schools
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
HTML JAVASCRIPT. CONTENTS Javascript Example NOSCRIPT Tag Advantages Summary Exercise.
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.
CSS Cascading Style Sheets A very brief introduction CSS, Cascading Style Sheets1.
INTRODUCTION TO HTML5 New HTML5 User Interface and Attributes.
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.
IPUB 100 Lesson 3 Instructor Mark Lamontagne Review Create html5 page on blackboard. Write a relative link from the index page, for an image called car.jpg.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
Group 9: Through examples, explain how to build a css navigation bar. Presented by: Daniel Ku, Matt Iannacci & Iphia Henry.
Chapter 5 pp HTML Elements & Attributes Format Content Or Examples This Text Is A Hyperlink.
LISTS AND LINKS Explained By: Sarbjit Kaur. Lecturer, Department of Computer Application, PGG.C.G., Sector: 42, Chandigarh.
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
Chapter 1: Intro to HTML Section 1: HTML Structure Presentation Section 2: Layout of an HTML File Section 3: Working with Lists & Tables Section 4: HTML.
Chapter 4 and 5. Objectives Introduce markup: elements and attributes How browsers interpret HTML documents Basic structure of HTML document What do style.
Course created by Sarah Phillips BBCD Melbourne BAPDCOM Version 1 – April 2013.
01 – HTML (1) Informatics Department Parahyangan Catholic University.
HTML Tables Tables are defined with the tag. A table is divided into rows (with the tag), and each row is divided into data cells (with the tag). td stands.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
HTML LAYOUTS. CONTENTS Layouts Example Layout Using Element Example Using Table Example Output Summary Exercise.
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
Basic Webpage Design Formatting output using Unordered List and Ordered List tag.
Web Basics: HTML/CSS/JavaScript What are they?
Web Development Part 1.
Chapter 6 Lists.
ITI 133 HTML5 Desktop and Mobile Level I
TABLES, LISTS & IMAGES.  Tables are defined with tag.  Table is divided into rows and columns.  Table must have at least one row and one column  Table.
PAGE LAYOUT - 1.  Most HTML elements are defined as block level elements or inline elements.  Block level elements normally start (and end) with a new.
HTML5 Level I Session II Chapter 3 - How to Use HTML to Structure a Web Page
What is HTML?.
Presentation transcript:

HTML

HTML Lists There are three types of lists: Ordered List Unordered List Definition List

Ordered List An ordered list starts with the <ol> tag Each list item starts with the <li> tag The list items are marked with numbers. Sample Output: The first list item The second list item The third list item

Ordered Lists (cont.) This is the HTML code of the above output: <ol> <li>The first list item</li> <li>The second list item</li> <li>The third list item</li> </ol>

Unordered List An unordered list starts with the <ul> tag Each list item starts with the <li> tag The list items are marked with numbers. Sample Output: The first list item The second list item The third list item

Unordered List (cont.) This is the HTML code of the above output: <ul> <li>The first list item</li> <li>The second list item</li> <li>The third list item</li> </ul>

Definition List A definition list is a list of items, with a description of each item. <dl> tag defines a definition list. <dt> tag defines the item in the list <dd> tag describes the item in the list

Definition List (cont.) <dl> <dt>Coffee</dt> <dd>- black hot drink</dd> <dt>Milk</dt> <dd>- white cold drink</dd> </dl> Definition List (cont.) Sample HTML code of definition list: <dl> <dt>Coffee</dt> <dd>- black hot drink</dd> <dt>Milk</dt> <dd>- white cold drink</dd> </dl>

Definition List (cont.) <dl> <dt>Coffee</dt> <dd>- black hot drink</dd> <dt>Milk</dt> <dd>- white cold drink</dd> </dl> Definition List (cont.) Output of the above code: Coffee - black hot drink Milk - white cold drink

HTML List Tags Tag Description <ol> Defines an ordered list <ul> Defines an unordered list <li> Defines a list item <dl> Defines a definition list <dt> Defines an item in a definition list <dd> Defines a description of an item in a definition list

HTML Block Elements Block elements normally start (and end) with a new line when displayed in a browser. Examples: <h1>, <p>, <ul>, <table>

HTML Inline Elements Inline elements are normally displayed without starting a new line. Examples: <b>, <td>, <a>, <img>

HTML Grouping Tags Tag Description <div> Defines a div <span> Defines a span

HTML <div> Element a block element that can be used as a container for grouping other HTML elements can be used to set style attributes to large blocks of content Also used for document layout

HTML <span> Element an inline element that can be used as a container for text can be used to set style attributes to parts of the text

HTML Layout – using <div> <body style="margin-top:0;"> <div style="100%"> <div style="background-color:#FFA500;"> <h1 style="margin-bottom:0; margin-left:10">Main Title of Web Page</h1> </div> <div style="background-color:#FFD700;height:200px;width:20%;float:left;"> <b>Menu</b><br />HTML<br />CSS<br />JavaScript <div style="background-color:#EEEEEE;height:200px;width:80%;float:right;"> Content goes here <div id="footer" style="background-color:#FFA500;clear:both;text-align:center;"> Copyright 2012 </body> </html>

HTML Layout – using <div> (cont.)