INTRODUCTION TO WEB DEVELOPMENT

Slides:



Advertisements
Similar presentations
HTML. The World Wide Web Protocols Addresses HTML.
Advertisements

ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
HTML/XML XHTML Authoring. Creating Tables  Table: An arrangement of horizontal rows and vertical columns. The intersection of a row and a column is called.
History Leading to XHTML
Tim Berners-Lee authors HTML in 1991, assisted by his colleagues at CERN,
Beginning Web Site Creation: Dreamweaver CS4 Noreen Brown XHTML CODING -- TAGS.
COMP101 – Exploring Multimedia and Internet Computing LA2 (Thur 14:00 – 16:50) TA: Jackie Lo.
Creating a Well-Formed Valid Document. 2 Objectives Introducing XHTML Creating a Well-Formed Document Creating a Valid Document Creating an XHTML Document.
F DIGITAL MEDIA: COMMUNICATION AND DESIGN INTRODUCTION TO XML AND XHTML.
HTML Elements. HTML documents are defined by HTML elements.
HTML Code HTML can be written on the simplest text programs. A web page is defined by the tag.
Week 1 8/10/2015iSTTS, Agenda Introduction to HTML Creating and publishing a Web page Validating a document Main HTML elements Block-level HTML.
Computer Sciences Department
Define html document byusing Example : Title of the document The content of the document......
Ku-Yaw Chang Assistant Professor, Department of Computer Science and Information Engineering Da-Yeh University.
Working with XHTML Creating a Well-Formed Valid Document.
XP Tutorial 9New Perspectives on Creating Web Pages with HTML, XHTML, and XML 1 Working with XHTML Creating a Well-Formed Valid Document Tutorial 9.
HTML BASICS Creating Web Pages with HTML CIS 133 Web Programming Concepts 1.
 XHTML is aimed to replace HTML  XHTML is almost identical to HTML 4.01  XHTML is a stricter and cleaner version of HTML  XHTML is HTML defined as.
 2002 Prentice Hall, Inc. All rights reserved.2 Chapter 2 — Introduction to HyperText Markup Language 4: Part I Outline 2.1Introduction 2.2Markup Languages.
XHTML Presented by Kelly(Geun-young) Yim. Learning Objectives  List the difference between XHTML and HTML  Create a valid, well-formed XHTML document.
CS134 Web Design & Development Creating a Basic Web Page Exerted from Mehmud Abliz slides.
Introduction. Document Structure Overview  XML declaration (prolog)  Document type declaration  Root element (namespace)  Document header  Document.
Website Development & Management Creating Web Pages CIT Fall Instructor: John Seydel, Ph.D.
1 XHTML محمد احمدی نیا 2 Of 19 HTML vs XHTML  XHTML is a stricter and cleaner version of HTML.  by combining the strengths of HTML.
A Basic Web Page. Chapter 2 Objectives HTML tags and elements Create a simple Web Page XHTML Line breaks and Paragraph divisions Basic HTML elements.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
HTML: Hyptertext Markup Language Doman’s Sections.
Lesson 4.
XHTML TAGS I Basic Tags. North Lake College 2 by Sean Griffin Sample XHTML Code.
17 Apr 2002 XML Syntax: Documents Andy Clark. Basic Document Structure Element tags – Elements have associated attributes Text content Miscellaneous –
CIS67 Foundations for Creating Web Pages Professor Al Fichera Rev. August 25, 2010—All HTML code brought to XHTML standards.
1 Web Application Programming Presented by: Mehwish Shafiq.
Lecture: Web Design Assis. Prof. Freshta Hanif Ehsan Faculty of Computer Science Kabul Polytechnic University Spring Semester
Unit 3 — Advanced Internet Technologies Lesson 10 — Introduction to XHTML.
Elements and Attributes. XHTML Elements The element contains special information that does not necessarily show up on the web page. The element determines.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
Revision Webpage design HTML.   FACE  Attributes  Marquee  Define the following terms.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
XP Including Comments in an HTML Document On a new blank line in an HTML document, type the start code for a comment:
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Fall 2016 CSULA Saloni Chacha
HTML Basics.
Creating a Well-Formed Valid Document
Web Design and Development
Elements of HTML Web Design – Sec 3-2
HTML Lab 5 10/1/2015.
HTML.
Coding, Testing and Valdating a Web Page
3.00cs HTML Overview 3.00cs Develop webpages.
Elements of HTML Web Design – Sec 3-2
Chapter 4 - Introduction to XHTML: Part 1
Elements and Attributes
HTML Vocabulary.
WEBSITE DESIGN Chp 1
XHTML
Web Programming Maymester 2004
Tepp Räisänen Liike/OAMK 2011
Introduction to HTML- Basics
Intro to Web Development HTML Structure
Pertemuan 1b
Pertemuan 1 Desain web Pertemuan 1
XHTML 7-May-19.
XHTML 29-May-19.
محمد احمدی نیا XHTML محمد احمدی نیا
Presentation transcript:

INTRODUCTION TO WEB DEVELOPMENT AND HTML Rommel Anthony Palomino Summer 2011 Lecture 2

<p>Here is a paragraph</p> HTML Tags and elements <p>Here is a paragraph</p> Start tag Content End tag

HTML Elements Links: <a></a> <a href=“http://www.google.com“> Search </a> Images: <img> <img src=“myPicture.jpg” width=“300” height”100”/> Lines: <hr/> It is used to separate content <p> my paragraph </p> <hr/> <p> another paragraph </p>

<p><strong>Here is a paragraph.</strong></p> Nesting tags <p><strong>Here is a paragraph.</strong></p> Good <p><strong><em>Here is a paragraph.</em></strong></p> <p><strong><em>Here is a paragraph. </strong></em></p> Bad

Empty Elements HTML Elements with no content. They can be closed in the start tag. Example: <br> : line break

HTML Tips Always use lowercase tags: <p> <P> Always quote attribute values: <form name = “myForm” > Use lowercase attributes: <img height=“100”>

XHTML All tags and attributes must be in lowercase and must always be closed. XHTML always requires an end tag. i.e.: A carriage return HTML: <br> XHTML: <br></br>

HTML vs. XHTML HTML XHTML Use less strict rules. Use more strict rules.

XHTML (outline) DTD Namespace & Language Declaration

XHTML (language format) Character set listings From Part 1 to Part 16 Ex: English – Part 1, Hungarian – Part 2, French – Part 15 … Reference http://en.wikipedia.org/wiki/ISO/IEC_8859

Other meta-tags Language set Title Author Robots Keyword

Questions?