Tutorial 1 – Creating Web Pages With HTML

Slides:



Advertisements
Similar presentations
HTML popo.
Advertisements

HTML. The World Wide Web Protocols Addresses HTML.
Chapter 2 HTML Basics Key Concepts
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.
Web Page Development Identify elements of a Web Page Start Notepad
Developing a Basic Web Page with HTML
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.
SSome HTML tags allow you to specify a variety of options, or attributes, along with the basic tag itself. For example, when you begin a paragraph with.
HTML Overview Part 2 – Paragraphs, Headings, and Lines 1.
1.  Describe the anatomy of a web page  Format the body of a web page with block-level elements including headings, paragraphs, lists, and blockquotes.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
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 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
HTML,DHTML & Javascript/Session1/1 of 39 Introduction and Basic Tags Session 1 of Using HTML, DHTML & JavaScript.
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
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 2 HTML Tutorial 1: Developing a Basic Web Page.
HTML: Hyptertext Markup Language Doman’s Sections.
4 Chapter Four Introduction to HTML. 4 Chapter Objectives Learn basic HTML commands Discover how to display graphic image objects in Web pages Create.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
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.
HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.
CS 100 Introduction to Web Page Construction and HTML.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
XP 1 HTML Tutorial 1: Developing a Basic Web Page.
1 Your Web Page title body of Web page main heading H2 heading bulleted list paragraph.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
Q.Nand1 HTML Creating an HTML Document Lesson 2. Q.Nand2 Overview Creating an HTML Document: –HTML syntax –Creating Basic Tags –Displaying Your HTML Files.
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.
What you can see in the picture?
INTRO TO WEB DEVELOPMENT html
HTML Basics.
Introduction to HTML:.
LAB Work 01 MBA 61062: E-Commerce
Marking Up with XHTML Tags describe how a web page should look
Organizing Content with Lists and Tables
Lecturer (Dept. of Computer Science)
HTML Programming Basic HTML text formatting.
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
Creating a Web Page.
HTML5 – Heading, Paragraph
Creating a Home Page in HTML
HTML Formatting.
Programming the Web using XHTML and JavaScript
Text Elements.
Chapter 1: Introduction to XHTML (part 1)
HTML Lists CS 1150 Fall 2016.
Elements of HTML Web Design – Sec 3-2
Elements and Attributes
COMPUTING FUNDAMENTALS
Text Elements.
Web Engineering Course Code: CSE 417
Computers and Scientific Thinking David Reed, Creighton University
COMS 161 Introduction to Computing
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Text Elements.
HTML Lists CS 1150 Spring 2017.
Tutorial Working with Block-Level Elements
Creating and Editing a Web Page
Marking Up with XHTML Tags describe how a web page should look
Text Elements.
Marking Up with XHTML Tags describe how a web page should look
Basics of Web Design Chapter 2 HTML Basics Key Concepts
Basics of Web Design Chapter 2 HTML Basics Key Concepts
Text Elements.
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

Tutorial 1 – Creating Web Pages With HTML By Marge Hohly Professor CIS 205 - Marge Hohly

Points to Cover HTML Page Basic page format Headings and properties for tags Paragraph tags Tag types Lists Character Tags Special Characters Horizontal Lines Graphics Practice page to code with class. CIS 205 - Marge Hohly

Creating an HTML Document HTML document parts Document Content What you see, text & graphics Tags Controls appearance of the document content Tag generic syntax: <Tag Name Properties> Content </Tag Name> <H1 ALIGN=Center>My Web Page</H1> CIS 205 - Marge Hohly

Web Page Basic Format <HTML> <HEAD> </HEAD> <BODY> </BODY> </HTML> Basic Webpage Template View Basic page in browser CIS 205 - Marge Hohly

Heading Tags Heading elements affects the appearance of document content (Text) Heading tags Examples CIS 205 - Marge Hohly

Adding Properties to Tag Header tags started to contain properties with HTML 3.2 version Align tag Center Left (Default) Right Header with Properties examples CIS 205 - Marge Hohly

Tag Types Opening tag Closing tag Two-sided tag One-sided tag The tag that turns on a particular layout feature in HTML. Opening tags are enclosed in < > symbols. Closing tag The tag that turns off a particular layout feature in HTML. Closing tags are enclosed in </ >. Two-sided tag A tag that requires an opening and closing tag. <H1> Initial Heading </H1> <B> Makes texts bold </B> One-sided tag A tag that does not require an opening and closing tag. <HR> Horizontal Rule or <BR> line Break CIS 205 - Marge Hohly

Paragraph Tags Defines the beginning and end of a paragraph of text. <P> The text of a paragraph </P> To insert a blank line use <P></P> Align=OPTION where OPTION is either LEFT, CENTER, or RIGHT Example: <P ALIGN=CENTER> Text </P> CIS 205 - Marge Hohly

List Tags Unordered List Ordered List Definition List CIS 205 - Marge Hohly

Unordered List Know as a bulleted list <UL> <LI> Line item </LI> <LI> Line item </LI> <LI> Line item </LI> </UL> Use starting and closing tags for all parts Unordered List Example CIS 205 - Marge Hohly

Ordered List Numbered List <OL> <LI> Line item </LI> <LI> Line item </LI> <LI> Line item </LI> </OL> Can modify the number type using properties Ordered List Example CIS 205 - Marge Hohly

Definition List A list of terms and their definitions line <DL> <DT> Term <DD> Definition line <DT> Term <DD> Definition line <DT> Term <DD> Definition line </DL> Definition List Example CIS 205 - Marge Hohly

Adding Properties to Lists Unordered list can vary the shape of the bullet For example, circle, disk, & square Type Property for Unordered Lists CIS 205 - Marge Hohly

Nested Lists A list within a list <UL> <LI> Cats</LI> <LI> Dogs</LI> <UL> <LI> Cocker</LI> <LI> Poodle</LI> </UL> <LI> Birds</LI> </UL> Indenting helps you avoids errors in coding, but makes no difference in appearance Example Nested List CIS 205 - Marge Hohly

Character Tags Logical character tag Physical character tag CIS 205 - Marge Hohly

Logical Character Tags Indicates how the text is used, not necessarily how it is displayed Different browsers may interpret slightly differently Examples of Logical Character tags CIS 205 - Marge Hohly

Physical Character Tags Indicates exactly how text is to be formatted and displayed Examples of Physical Character Tags CIS 205 - Marge Hohly

Special Characters Sometimes you want to include characters in your Webpage that don’t appear on your keyboard Sometimes you want to insert a non-character or numeric character like & < > etc. Insert the code for the character ie: < for a < Examples:Special Characters CIS 205 - Marge Hohly

Horizontal Lines To display a horizontal line in a web page use the Horizontal Rule tag The basic tag is <HR> Examples: Horizontal Rules CIS 205 - Marge Hohly

Inline Image An image that appears directly on a Web page. Image inserted into the document where the anchor is placed. Example: Inline Image CIS 205 - Marge Hohly

Simple Link A highlighted phrase or keyword that moves you from one topic to another after being clicked or activated. Example: CIS 205 - Marge Hohly

Class Practice page Class will design and code a sample simple WebPages. Include: At Least 2 levels of headings List Horizontal line Link (optional) Graphic (coffee cup) CIS 205 - Marge Hohly