Creating a Web Page CSC 121.

Slides:



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

HTML Hypertext Markup Language –First proposed by CERN in 1989 –It is non-linear so it allows you to jump from place to place –Markup refers to the structure.
Tutorial 1 Getting Started with HTML5
XP Tutorial 1 New Perspectives on HTML and XHTML, Brief 1 Developing a Basic Web Page Creating a Web Page for Stephen Dubé’s Chemistry Classes Tutorial.
New Perspectives on Creating Web Pages with 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.
Tutorial 1 Developing a Basic Web Page
Tutorial 1 Developing a Basic Web Page. XP Objectives Learn the history of the Web and HTML Describe HTML standards and specifications Understand HTML.
 2004 Prentice Hall, Inc. All rights reserved. Introduction to XHTML: Part 1.
XP 1 New Perspectives on Creating Web Pages with HTML Tutorial 1: Developing a Basic Web Page.
Developing a Basic Web Page
Objectives Learn the history of the Web and 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.
Developing a Basic Web Page with HTML
Developing a Basic Web Page Posting Files on UMBC
Glencoe Digital Communication Tools Create a Web Page with HTML Chapter Contents Lesson 4.1Lesson 4.1 Get Started with HTML (85) Lesson 4.2Lesson 4.2 Format.
Week 1 8/10/2015iSTTS, Agenda Introduction to HTML Creating and publishing a Web page Validating a document Main HTML elements Block-level HTML.
Developing a Basic Web Page
1 Networks and the Internet A network is a structure linking computers together for the purpose of sharing resources such as printers and files Users typically.
Unit 1 – Developing a Web Page. Objectives:  Learn the history of the Web and HTML  Describe HTML standards and specifications  Understand HTML elements.
HTML (HyperText Markup Language)
HTML Structure & syntax
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.
XP 1 New Perspectives on Creating Web Pages with HTML Developing a Basic Web Page.
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.
HTML BASICS Web Design I. Web Design  WWW created in the late 1980’s  Used in academics for the next 5 years  Mosaic (1994) allowed both pictures &
XP 1 New Perspectives on Creating Web Pages with HTML Tutorial 1: Developing a Basic Web Page.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.
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.
(HYPER-TEXT-MARKUP-LANGUAGE) By: Saima Islam By: Saima Islam.
XP Review 1 New Perspectives on JavaScript, Comprehensive1 Introducing HTML and XHTML Creating Web Pages with HTML.
The Web Wizard’s Guide to HTML Chapter Two Basic Text Formatting.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
XP 1 HTML Tutorial 1: Developing a Basic Web Page.
Introduction to HTML (Web Design) IT Fundamentals.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
Developing a Basic Web Page
HTML Structure & syntax
Tutorial 1 – Creating Web Pages With HTML
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
CGS 3066: Lecture 2 Web Development and HTML5
Computer Fundamentals 2
Lecturer (Dept. of Computer Science)
Introducing XHTML: Module A: Web Design Basics
Introducing XHTML: Module A: Web Design Basics
HTML: HyperText Markup Language
Creating a Web Page.
HTML5 – Heading, Paragraph
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
3.00cs HTML Overview 3.00cs Develop webpages.
Chapter 4 - Introduction to XHTML: Part 1
HTML Intro.
Web Engineering Course Code: CSE 417
CGS 3066: Lecture 2 Web Development and HTML5
Tutorial Developing a Basic Web Page
Introduction to HTML- Basics
Intro to Web Development HTML Structure
Chapter 16 The World Wide Web.
HTML What is Html? HTML stands for Hypertext Markup Language.
HTML Basics Mr. Fazzalari.
An Introduction to HTML Pages
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

Creating a Web Page CSC 121

Short History of WWW/HTML Internet came first (late ’60s). ARPANET – US military network WWW using Hypertext (circa 1989) invented as a means of Internet navigation Tim Berners-Lee @ Geneva, Switzerland Hyper Text Markup Language (HTML) First publicly documented – 1991 22 Elements; 13 remain in HTML 4 Wikipedia; HTML 7.

Evolution of HTML Early - No standards. Competing browsers Netscape Navigator Microsoft Internet Explorer Introduced extensions to gain competitive edge Not compatible World Wide Web Consortium (W3C) Standards (not enforceable)

HTML Status Lots of older web pages left around. Old features may be deprecated by W3C, but may be supported for indefinite time by various browsers. What works in one browser may work differently or not at all in another.

Tools HTML documents are simply text files. Only software package needed is a text editor. An HTML converter takes text in one format and converts it to HTML code.

HTML Document HTML document may have a variety of elements: Title Headings Paragraphs And others . . . Elements are marked with tags.

HTML Tag Syntax Tags One-sided Tag Syntax <element /> Example: two-sided One-sided Tag Syntax <element /> Example: <br /> - - causes a line break

HTML Tag Syntax Tags Two-sided Tag Syntax one-sided two-sided Two-sided Tag Syntax <element attributes>content</element> Example: <h1 align=center>Title of Document</h1>

HTML Coding Conventions Use lowercase for tag names, attribute names. Use closing tags for two-sided tags. Don’t omit space and / in one-sided tags. HTML 11

Places to learn HTML, etc. http://www.w3schools.com/ http://www.w3.org/

HTML Codes entered in Editor <head> <title>The Document by Me</title> </head> <body> </body> </html>

See html1

Creating a Paragraph See html2 HTML formats text through the use of tags ignores things such as blank spaces, blank lines, or tabs Use <p> to begin the paragraph Use </p> to close the paragraph See html3

Creating Lists ordered list (OL) See html4 unordered list (UL) definition list (DL) See html5

Other Tags Logical Character Tags Physical Character Tags EM STRONG CODE KBD VAR CITE any combination Physical Character Tags B I TT BIG SMALL SUB SUP

More Tags blinking text (BLINK) – 2-sided link (A) – 2-sided insert an image (IMG) horizontal rule (HR)