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.

Slides:



Advertisements
Similar presentations
Introduction to Web Design Lecture number:. Todays Aim: Introduction to Web-designing and how its done. Modelling websites in HTML.
Advertisements

Internet Basics & Way Beyond!
HTML popo.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
KompoZer. This is what KompoZer will look like with a blank document open. As you can see, there are a lot of icons for beginning users. But don't be.
WeB application development
How Tags are used to form your Web Page
New Perspectives on Creating Web Pages with HTML
Chapter 4 Marking Up With Html: A Hypertext Markup Language Primer.
Tutorial 4: Designing a Web Page with Tables
XP 1 New Perspectives on Creating Web Pages with HTML Tutorial 4: Designing a Web Page with Tables.
XP 1 Designing a Web Page with Tables Tutorial 4 Creating a News Page.
Creating a Web Page with Tables. Objectives Create a text table with preformatted text Create the basic structure of a graphical table Organize table.
XP Creating Web Pages with HTML Using Tables. XP Objectives Create a text table Create a table using the,, and tags Create table headers and captions.
Using HTML Tables.
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.
Tags through Forms. This element is required for all HTML pages It must be at the top of every page of every website We’ll see later on why it is important.
HTML Tables and Forms Creating Web Pages with HTML CIS 133 Web Programming Concepts 1.
Tutorial 1: Getting Started with HTML5
XP 1 Tutorial 4 Designing a Web Page with Tables.
1 The Structure of a Web Table beginning of the table structure first row of three in the table end of the table structure table cells You do not need.
Chapter 4 Fluency with Information Technology L. Snyder Marking Up With HTML: A Hypertext Markup Language Primer.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Fluency with Information Technology Third Edition by Lawrence Snyder Chapter.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
Web Technologies Website Development Trade & Industrial Education
Chapter 4: Hypertext Markup Language Primer TECH Prof. Jeff Cheng.
Website Development with Dreamweaver
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.
XP Mohammad Moizuddin Creating Web Pages with HTML Tutorial 1 1 New Perspectives on Creating Web Pages With HTML Tutorial 1: Developing a Basic Web Page.
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
CNIT 132 – Week 7 HTML - Tables. Tables on the World Wide Web A table can be displayed on a Web page either in a text or graphical format. A text table:
XP New Perspectives on The Internet, Sixth Edition— Comprehensive Tutorial 8 1 Creating Effective Web Pages Creating HTML Documents Tutorial 8.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Introduction to HTML. Slide 1 Hard-Coding What is hard-coding? –Creating the page in a text editor just using HTML A Web designer should know how to hard-
Designing a Web Page with Tables. A text table: contains only text, evenly spaced on the Web page in rows and columns uses only standard word processing.
XP Creating Web Pages with HTML, 3e Prepared by: C. Hueckstaedt, Tutorial 4 1 New Perspectives on Creating Web Pages with HTML Tutorial 4: Designing a.
4 Chapter Four Introduction to HTML. 4 Chapter Objectives Learn basic HTML commands Discover how to display graphic image objects in Web pages Create.
CIS234A- Lecture 7 Instructor Greg D’Andrea. Tables A table can be displayed on a Web page either in a text or graphical format. A text table: – contains.
1 Web Application Programming Presented by: Mehwish Shafiq.
How to make tables in HTML By Daniel Arze. How do they do this?
Basic Table Elements. 2 Objectives Define table elements Describe the steps used to plan, design, and code a table Create a borderless table with text.
HTML Basics. HTML Introduction Stands for HyperText Markup Language. HTML files are plain text files with mark ups. Some characteristics of HTML: –No.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
CIS234A Lecture 8 Instructor Greg D’Andrea. Review Text Table contains only text, evenly spaced on the Web page in rows and columns uses only standard.
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. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
HTML Introduction. Lecture 7 What we will cover…  Understanding the first html code…  Tags o two-sided tags o one-sided tags  Block level elements.
Spiderman ©Marvel Comics Creating Web Pages (part 1)
HTML tags and attributes By: Dennis Champagne. List of tags.
Introduction to HTML C151 Multi-User Operating Systems.
XP Review 1 New Perspectives on JavaScript, Comprehensive1 Introducing HTML and XHTML Creating Web Pages with HTML.
Creating Tables in a Web Site HTML 4 Created by S. Cox.
Web Page Tables GMU-Teaching with Technology. Table Characteristics: Looks like a news page Contains columns and rows.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
Behind every site is a mix of special languages that your web browser understands The main way of describing any website is HTML HTML stands for Hyper.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
HTML Tags BTT1O. HTML  Documents written in hypertext markup language can be interpreted by all web browsers.  This language lets the web page developer.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
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.
1 Cascading Style Sheet (CSS). 2 Cascading Style Sheets (CSS)  a style defines the appearance of a document element. o E.g., font size, font color etc…
Designing a Web Page with Tables
CNIT 131 HTML5 - Tables.
LAB Work 02 MBA 61062: E-Commerce
New Perspectives on Creating Web Pages with HTML
Using HTML Tables SWBAT: - create tables using HTML
HTML Structure.
Presentation transcript:

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 of the web browser to interpret tags and display the content accordingly.

HTML Syntax An HTML file contains both formatting tags and content. Document content Document content is what we see on the webpage. Tags are the HTML codes that control the appearance of the document content.

Structure of the web page Starting with the tag Starting with the tag Everything about the web page should be enclosed here

Structure of the web page Inside the tag head – Each web page has a head part described in tag: My first Web page The title of the web page should be put here

Structure of the web page Inside the tag body – Each web page has a body part described in tag: My first Web page This is a sample HTML file. The content of the whole web page should be put here

Defining a Table Structure The first step to creating a table is to specify the table structure: – the number of rows and columns – the location of column headings – the placement of a table caption Once the table structure is in place, you can start entering data into the table. 7

Using the,, and Tags Graphical tables are enclosed within a two- sided tag that identifies the start and ending of the table structure. Each row of the table is indicated using a two- sided (for table row). Within each table row, a two-sided (for table data) tag indicates the presence of individual table cells. 8

The General Table Syntax First Cell Second Cell Third Cell Fourth Cell 9 two rows two columns

Columns within a Table HTML does not provide a tag for table columns. In the original HTML specifications, the number of columns is determined by how many cells are inserted within each row. – for example, if you have four tags in each table row, that table has four columns Later versions of HTML provide increased support for controlling the appearance of table columns. 10

HTML Structure of a Table 11 beginning of the table structure first row of six in the table end of the table structure table cells You do not need to indent the tags or place them on separate lines, but you may find it easier to interpret your code if you do so. After the table structure is in place, you’re ready to add the text for each cell.

Creating Headings with the Tag HTML provides the tag for table headings. Text formatted with the tag is centered within the cell and displayed in a boldface font. The tag is most often used for column headings, but you can use it for any cell that you want to contain centered boldfaced text. 12

Adding Table Headings to the Table 13 table headings Text in cells formatted with the tag is bold and centered above each table column.