HTML— More Tags, Formatting, and Lists. Formatting Tags  Bold  Italics  Underline  Big text  Small text  Subscript (H 2 O)  Superscript (10 3 )

Slides:



Advertisements
Similar presentations
HTML TABLES EXPLAINED. What is a TABLE? The HTML table allows web designers to arrange & organize data -- text, images, hyperlinks, forms, form fields,
Advertisements

Table (TABLE) Contains TABLE ROWS (TR) Contains TABLE DATA (TD) Data can contain anything Text Lists Other tables Pictures …
HTML Basics 1450 Technology Seminar Copyright 2003, Matthew Hottell.
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.
How Tags are used to form your Web Page
Chapter 4 Marking Up With Html: A Hypertext Markup Language Primer.
Introducing Web Tables
Web Page Development Identify elements of a Web Page Start Notepad
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
HTML. Goals How to use the Komodo editor HTML coding and testing Basic HTML tags List and Images Tables and Links At least 2 pages and navigation
Images and Tables. Displaying Image Attributes: SRC= " mypic.gif " – Name of the picture file SRC= " pic/mygif.jpg " – Name of file found in pic directory.
What is a TABLE? The HTML table allows web designers to arrange & organize data -- text, images, hyperlinks, forms, form fields, other tables, etc. Tables.
With Alex Conger – President of Webmajik.com FrontPage 2002 Level I (Intro & Training) FrontPage 2002 Level I (Intro & Training)
Chapter 5 Working with Tables. Agenda Add a Table Assign a Table Border Adjust Cell Padding and Spacing Adjust Cell Width and Height Add Column Labels.
Chapter 4 Fluency with Information Technology L. Snyder Marking Up With HTML: A Hypertext Markup Language Primer.
HTML basics exercises.
Dr. Nuha El-KhaliliInternet Programming ( ) HTML Hyper Text Markup Language The language of web pages Maintained by the W3C
Chapter 4: Hypertext Markup Language Primer TECH Prof. Jeff Cheng.
 HTML stands for Hyper Text Mark-up Language. The coding language used to create documents for the World Wide Web  HTML is composed of tags. HTML tags.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 2.
Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster
CPT 123 Internet Skills Class Notes Publishing to the Web Session B.
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.
Microsoft Word 2003 Word Processing. The Word 2003 Screen Menu Bar Title Bar Standard ToolbarFormatting Toolbar Vertical Scroll Bar Horizontal Scroll.
IS1824: Introduction to Internet Multimedia Lecture 5: Layout in HTML Rob Gleasure
HTML: Hyptertext Markup Language Doman’s Sections.
Organization Components (Lists, Table & Frame) Wah Yan College (Hong Kong) Mr. Li. C.P.
4 Chapter Four Introduction to HTML. 4 Chapter Objectives Learn basic HTML commands Discover how to display graphic image objects in Web pages Create.
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.
Introducing Web Tables. Tables for tabulating items  Better looking  More flexibility  More efficient to explain information than plain text.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
TABLES 1. In this chapter you will learn that tables have many uses in HTML. Objectives: Upon completing this section, you should be able to: 1. Insert.
Table (TABLE) Contains TABLE ROWS (TR) Contains TABLE DATA (TD) Data can contain anything › Text › Lists › Other tables › Pictures › …
Computer Science 101 Lists and Tables. Lists Unordered lists - use a bullet Ordered lists - use a number, Roman numeral, or letter.
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.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Basic HTML. So, what exactly is HTML? HTML stands for: HTML stands for: Hypertext Markup Language. It is a purpose built markup language for the delivery.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
Introduction to HTML C151 Multi-User Operating Systems.
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.
©SoftMoore ConsultingSlide 1 Introduction to HTML: Block-Level Elements.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
1 Foundation of HTML Web Page Design. 2 Safe Web Fonts: Used by most computers regardless of environment or platform  Times New Roman  Arial  Courier.
Chapter 4 HTML Tags. HTML is written in something called tags. Tags come in pairs, an opening one and a closing one. The first pair of tags we'll write.
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.
1 Mansoor Ahmed Bughio. 2 HTML TABLES With HTML you can create tables. Examples Tables This example demonstrates how to create tables in an HTML document.
Revised June 2008 Online PD Basic HTML1 Let’s Try It!  Open Notepad oStart > All Programs > Accessories > Notepad oDon’t get WordPad by mistake – won’t.
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.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
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
Fonts, Pictures, Styles, Files, Spelling, and More!
Elements of HTML Web Design – Sec 3-2
H T M L A B E S X P I N D.
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
If You Know Nothing About HTML, This is Where You Start.
Html.
H T M L A B E S X P I N D.
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
H T M L A B E S X P I N D.
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

HTML— More Tags, Formatting, and Lists

Formatting Tags  Bold  Italics  Underline  Big text  Small text  Subscript (H 2 O)  Superscript (10 3 )

Character Entities  Some characters have a special meaning in HTML, like the less than sign (<) that defines the start of an HTML tag  If we want the browser to actually display these characters we must insert character entities in the HTML source  Example: &lt = <  Open “Character Codes Chart” in the Reference folder on the student server

Lists  Unordered List ( )  Bulleted (no numbers)  Ordered List ( )  Numbered list  Create a new html document (use template).  Save it as “food.html”  Make the title of the page be “My Favorite Food” (should appear in the title bar and as a heading for the document)

 Change the background color to something other than default  Put a horizontal rule after the heading & make it thicker and the same color as your font  Change the font color to something other than default Changes on your Document

Unordered Lists  Unordered List  li defines a list item    Tamales  Tamales  Lasagna  Lasagna  Pumpkin Pie  Pumpkin Pie    Use the formatting tags from prior slide to change the appearance of the text  bold, italics, underline, big, small

Ordered List  Change the to  Change the to  Save and refresh

Tables  Evenly Space Data  Evenly Space Data  Display images in a specific part of a screen  Display images in a specific part of a screen  Organize information on a page

Tables  Each table starts with a tag  Each table row starts with a tag  Each cell (table data) starts with a tag  The letters td stands for "table data," which is the content of a data cell  A data cell can contain text, images, lists, paragraphs, forms, horizontal rules, tables, etc.

Tables  Create a new html document (use template)  Save it as “table.html”  Try it: One column: One column: <tr> </tr></table> One row and three columns: One row and three columns: <tr> </tr></table>  Save it and view it in your browser Be sure that the correct title appears in the title bar.

Tables  Now add the 3 rd table Two rows and three columns: Two rows and three columns: <tr> </tr><tr> </tr></table>

Table Attributes – You Try  The size and color of border  or or  or or    Headings in a Table  Instead of, use for the row of headings in your table  Cell Padding - sets the amount of space between the contents of the cell and the cell wall    Cell Spacing - controls the space between table cells    Background color of a table    Background color of a table cell    Alignment    Width  or  or

Tables  Create a new html document (use template).  Save it as “data.html”  Make the title of the page be “Contact Information” (should appear in the title bar and as a heading for the document)

 Change the background color to something other than default  Put a horizontal rule after the heading & make it thicker and the same color as your font  Change the font color to something other than default Changes on your Document

Make your Table Names Phone numbers Janalee Goodrich Melanie Brunson Remember that: Each table starts with a tag Each table row starts with a tag Each table data starts with a tag Don’t forget to put in a border attribute Empty cell = -- No border.

Assignment  Make the width of the columns =“160”  Make the borders of the table = “8”  Change to “15”  Change the background color of your header  Change the background color of the rest of the cells to a different color (inside of key bgcolor=“”)  Change the bordercolor ( )