CS543: WEB APPLICATION PROGRAMMING

Slides:



Advertisements
Similar presentations
MA foundation Creating webpages using XHTML (part 1) Simon Mahony CCH
Advertisements

HTML popo.
HTML. The World Wide Web Protocols Addresses HTML.
Creating a Web Page HTML: The Language of the WEB.
HTML: HyperText Markup Language Hello World Welcome to the world!
Making Things Look Nice: Visual Appearance and CSS CMPT 281.
CS134 Web Design & Development Attributes, Lists, Tables, Links, and Images Mehmud Abliz.
Beginning Web Site Creation: Dreamweaver CS4 Noreen Brown XHTML CODING -- TAGS.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
 2004 Prentice Hall, Inc. All rights reserved. Introduction to XHTML: Part 1.
Introduction to Web Site Development Steven Emory Department of Computer Science California State University, Los Angeles Lecture 2: More HTML.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
Lecture 13. A Very Brief Introduction to HTML and XHTML, part II Instructor: Jie Yang Department of Computer Science University of Massachusetts Lowell.
HTML Code HTML can be written on the simplest text programs. A web page is defined by the tag.
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.
Define html document byusing Example : Title of the document The content of the document......
Unit 1 – Developing a Web Page. Objectives:  Learn the history of the Web and HTML  Describe HTML standards and specifications  Understand HTML elements.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
Tutorial 1 Developing a Basic Web Page. New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives – Lesson 1 Introduction to the.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
HTML (continued). Assignment 3 Creating a web page with:  Images  Hyperlinks to some websites  Hyperlinks to your  Information about a company,
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Introduction to HTML 1 Basharat Mahmood, Department of Computer Science, CIIT, Islamabad, Pakistan.
Web111a_chapt01.ppt Definitions Hypertext Documents Documents containing elements that can be selected Links Active pointers to other documents or files.
HTML,DHTML & Javascript/Session1/1 of 39 Introduction and Basic Tags Session 1 of Using HTML, DHTML & JavaScript.
Ordered Lists By Brian Christian. Ordered List Tags You use this tag when you want to start an ordered list. Each list item you write need to start with.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
INT222 - Internet Fundamentals Shi, Yue (Sunny) Office: T2095 SENECA COLLEGE.
HTML Basics. HTML Introduction Stands for HyperText Markup Language. HTML files are plain text files with mark ups. Some characteristics of HTML: –No.
How to create Web Pages. Some relevant websites ????
Computer Science 101 Lists and Tables. Lists Unordered lists - use a bullet Ordered lists - use a number, Roman numeral, or letter.
HTML.
High Points CSCI 1710 Fall The Internet Packet switching Arpanet Cold War.
HTML Hyper Text Markup Language 1BFCET BATHINDA. Definitions Web server: a system on the internet containing one or more web site Web site: a collection.
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.
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.
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
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.
HTML tags and attributes By: Dennis Champagne. List of tags.
ECA 228 Internet/Intranet Design I HTML Tags. ECA 228 Internet/Intranet Design I anchor tags Adds a link to the web page Anything placed between the anchor.
The Web Wizard’s Guide to HTML Chapter Two Basic Text Formatting.
Elements and Attributes. XHTML Elements The element contains special information that does not necessarily show up on the web page. The element determines.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
CS134 Web Design & Development Attributes, Lists, Tables, Links, and Images Mehmud Abliz.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
XP 1 HTML Tutorial 1: Developing a Basic Web Page.
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.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
Glencoe Introduction to Web Design Chapter 4 XHTML Basics 1 Review Do you remember the vocabulary terms from this chapter? Use the following slides to.
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.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
Tutorial 1 – Creating Web Pages With HTML
Lecturer (Dept. of Computer Science)
HTML: HyperText Markup Language
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Creating a Web Page.
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
Session 5: HTML J 0394 – Perancangan Situs Web Program Studi Manajemen
Chapter 1: Introduction to XHTML (part 1)
Chapter 4 - Introduction to XHTML: Part 1
Elements and Attributes
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Introduction to HTML- Basics
Tutorial Working with Block-Level Elements
Creating Web Pages with HTML 5
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

CS543: WEB APPLICATION PROGRAMMING Computer Science Department Lab 2

Marking a List Marking a List HTML supports three kinds of lists: ordered, unordered, and definition You use an ordered list for items that must appear in a numerical order You use an unordered list for items that do not need to occur in any special order One list can contain another list This is called a nested list

Creating an Ordered List

Creating an Unordered List

Using the type Attribute to select numbers, letters, or roman numerals in ordered lists.

Marking a Block Quote The syntax for making an extended quote is • <blockquote>content</blockquote>

The syntax for making an extended quote is • <blockquote>content</blockquote>

Main HTML tags

HTML links are defined with the <a> tag.

Working with Inline Elements Big text: • <big>.....</big> Small text: • <small>....</small> Subscripted text: • <sub>....</sub> Superscripted text: • <sup>...</sup>

HTML images HTML images are defined with the <img> tag.

Adding Comments The comment tag adds notes to your HTML code <!-- comment -->

horizontal line. <hr> to draw line as a horizontal line .