Introduction to HTML II Shih-Heng Chin. Preface Structure of a HTML File Elements used frequently Tables.

Slides:



Advertisements
Similar presentations
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 6: HTML Tables.
Advertisements

Color Templates Software Engineering Module: Web UI Programming Topic: HTML TALENTSPRINT | © Copyright 2012.
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!
CS134 Web Design & Development Attributes, Lists, Tables, Links, and Images Mehmud Abliz.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
HTML. Creating a Table Attributes: border: indicates the border type of the table Value: 0 (no border), 1, 2, etc. cols: indicates the number of columns.
INTRODUCTION TO WEB DEVELOPMENT AND HTML Lecture 06: Tables - Spring 2011.
HTML Essentials Tables and Table Tags. Overview Use of Tables goes beyond tabulating data Frequently used to format Web pages / control layout Especially.
CS105 Introduction to Computer Concepts HTML
HTML II ECT 270 Robin Burke. 2 Outline Review Images text flow links Image maps Colors Tables.
Dr. Nuha El-KhaliliInternet Programming ( ) HTML Hyper Text Markup Language The language of web pages Maintained by the W3C
HTML. Basic HTML HTML document – HTML headings – to HTML paragraphs – HTML links – HTML images –
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster
>> Introduction to HTML: Tables. HTML is used to give websites structure 5 Basic Tags Element = Start-Tag+Content+End-Tag Heading Tags [h1-h6] Paragraph.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
CS105 INTRODUCTION TO COMPUTER CONCEPTS HTML Instructor: Cuong (Charlie) Pham.
HTML (Hypertext Markup Language) – Class 3 Recap: HTML Special Characters (ex: ©). Including Images – using the tag. Lists – Ordered and Unordered.
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.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
Computer Science 101 Lists and Tables. Lists Unordered lists - use a bullet Ordered lists - use a number, Roman numeral, or letter.
1 Review of HTML Elements. 2 The tag These tags are marked as comments in HTML. Any text between these two comment tags will.
CS-3432 Electronic Commerce Lecture – 7 Sikandar Shujah Toor
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 (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
Assistant Professor,UCER Naini,Allahabad
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Introduction to Web Authoring Ellen Cushman /wra210.htm Class mtg. #2.
LINKING WEBPAGES USING HTML HYPERLINKS. Hyperlinks are text strings or images on a webpage which when clicked on, links to another section in the same.
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
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.
Elements & Attributes. There are different types of elements, but the 2 most important ones are BLOCK and INLINE. Block elements flow from top to bottom.
1 R3 R1 R5 R4 R6 R2 B B A A Looking at the Code Under the View menu Select Source.
01 – HTML (1) Informatics Department Parahyangan Catholic University.
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 to Web Authoring Bill Hart-Davidson AIM: billhd30 Session 2
HTML & CSS Jan Janoušek.
HTML.
CGS 3066: Lecture 2 Web Development and HTML5
Semester - Review.
Survey of Computer Science CSCI 110, Spring 2011 Lecture 23 HTML
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
>> HTML: Tables.
Elements of HTML Web Design – Sec 3-2
Intro to HTML Mr. Singh.
Getting Started – Table 2
CGS 3066: Web Programming and Design Spring 2016
HTML Tables CS 1150 Spring 2017.
Chapter 5 Introduction to XHTML: Part 2
Elements of HTML Web Design – Sec 3-2
Web Programming– UFCFB Lecture 5
H T M L A B E S X P I N D.
COMPUTING FUNDAMENTALS
مقدمة عن الإنترنت وفهم لغة HTML
Computers and Scientific Thinking David Reed, Creighton University
TABLES IN HTML No, not that kind of table!! THIS KIND!!
Web Design and Development
CGS 3066: Lecture 2 Web Development and HTML5
HTML ELEMENTS Ms. Olifer.
Introduction to XHTML Cont:.
Pertemuan 1b
Introduction to HTML.
Site Development Foundations Lesson 6
Basic HTML.
Web Client Side Technologies Raneem Qaddoura
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

Introduction to HTML II Shih-Heng Chin

Preface Structure of a HTML File Elements used frequently Tables

Structure of a HTML File (HTML Version Information) Head Title Meta Data Body

Important Meta Data Content-type Type Charset Refresh

Example Home - Web Hi

Result

Elements Used Frequently Text: FONT, B, I Paragraph: P, BR, PRE. ❋ Space characters (Block: DIV, SPAN) List: OL, UL, LI Figure: IMG Hyperlink: A

Structure of A Tag Element name: BODY Attribute: Name: bgcolor Value: #FFFFFF Start tag: End tag:

Attribute of FONT size Value: 1, 2, 3, 4, 5, 6, 7 +n or -n color face

Example of FONT

B, I B Text in Bold Font I Text in Italic Font

P, BR P Form a paragraph BR Add a line break Start tag only, there isn’t

PRE and Space Characters In HTML, all continued space characters, include space and tab, are merged into one space only. Use PRE to control space character manually.

Example of PRE Without PRE: int main(void) { return 0; } With PRE: int main(void) { return 0; }

List - OL, UL, LI OL Ordered lists UL Unordered lists LI List items

Example of List Project Name Team Member Timeline CD LD DVD

Attributes of IMG src - Location of image file, URI (protocol://host/folder/resouse) width height alt - Text for user can’t display images border Start tag only

Attributes of A href target Frame id Window id _blank, _top, _parent, _self

Tables Basic Table Structure Merge cells

Basic Table Structure Cell Row Table

Table Elements TABLE Row: TR Cell: TD, TH

Attribute of TABLE bgcolor border width, height cellspacing cellpadding

width, height of TABLE pixels width=”300” percent width=”90%”

border, cellspacing, cellpadding border cellspacing cellpadding

Example of TABLE

Merge Cells Attributes of TD rowspan Merge cells in the same column colspan Merge cells in the same row

Example of Merging Cells