Tutorial 1 Developing a Basic Web Page. New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives – Lesson 1 Introduction to the.

Slides:



Advertisements
Similar presentations
HTML I. HTML Hypertext mark-up language. Uses tags to identify elements of a page so that a browser such as Internet explorer can render the page on a.
Advertisements

Chapter 2 HTML Basics Key Concepts
XHTML Basics.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
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.
Developing a Basic Web Page Go see -- look around HTML Tutorial 1.
Tutorial 1 Developing a Basic Web Page. XP Objectives Learn the history of the Web and HTML Describe HTML standards and specifications Understand HTML.
Developing a Basic Web Page
Objectives Learn the history of the Web and HTML
Developing a Basic Web Page Posting Files on UMBC
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
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.
HTML Notes Chapters 1--6 Codes used in creating HTML documents are called tags. Tags are always enclosed in left ( ) angle brackets. Tags can be upper.
Tutorial 1: Getting Started with HTML5
Creating a Simple Page: HTML Overview
Developing a Basic Web Page
Basic XHTML Module 2: XHTML Basics LESSON 1. Module 2: XHTML Basics LESSON 1 Lesson Overview In this lesson, you will learn to:  Write XHTML code using.
Unit 1 – Developing a Web Page. Objectives:  Learn the history of the Web and HTML  Describe HTML standards and specifications  Understand HTML elements.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
XP 1 HTML: The Language of the Web A Web page is a text file written in a language called Hypertext Markup Language. A markup language is a language that.
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
CS134 Web Design & Development Creating a Basic Web Page Mehmud Abliz.
Learning Web Design: Chapter 4. HTML  Hypertext Markup Language (HTML)  Uses tags to tell the browser the start and end of a certain kind of formatting.
CNIT 132 – Week 2 HTML (1). Introducing the World Wide Web A network is a structure linking computers together for the purpose of sharing resources such.
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.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
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.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
XP New Perspectives on The Internet, Sixth Edition— Comprehensive Tutorial 8 1 Creating Effective Web Pages Creating HTML Documents Tutorial 8.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to 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.
Basic HTML PowerPoint How Hyper Text Markup Language Works.
Introduction to HTML. Slide 1 Hard-Coding What is hard-coding? –Creating the page in a text editor just using HTML A Web designer should know how to hard-
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
HTML: Hyptertext Markup Language Doman’s Sections.
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.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
Creating Your First Web Page – Topic: Creating a wiki, blog, image blog and podcast Click Arrow - Next Slide 1.
HTML Tags Lesson 2. What are HTML Tags?  Markup tags  Coded instructions that accompany the plain text of an HTML document  Syntax –Left wicket< –Tag.
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.
XP 1 Developing a Basic Web Page Tutorial 1. XP 2 Introducing the World Wide Web Network - linking computers, sharing resources Network - linking computers,
CHAPTER 1: INTRODUCTION. CONTENTS  Networks  World Wide Web  Hypertext Documents  Web pages - Web site  Web Servers and Web Browsers  HTML: The.
Copyright © 2013 Pearson Education, Inc. Publishing as Pearson Addison-Wesley What did we learn so far? 1.Computer hardware and software 2.Computer experience.
Lesson 2 – Unit B. Quick review 1. What is the name of the eGCC host that you ftp your files? 2. What type of software do you use to create and edit web.
Basic HTML. Lesson Overview In this lesson, you will learn to:  Write HTML code using a text editor application such as Notepad.  View Web pages created.
XP Review 1 New Perspectives on JavaScript, Comprehensive1 Introducing HTML and XHTML Creating Web Pages with HTML.
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.
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.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
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.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Developing a Basic Web Page
HTML5 – Heading, Paragraph
Unit A.
Tutorial Developing a Basic Web Page
Tutorial Working with Block-Level Elements
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

Tutorial 1 Developing a Basic Web Page

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives – Lesson 1 Introduction to the tools needed to create a Webpage. The basic structure of an HTML file Work with block-level elements New Perspectives on HTML and XHTML, 5e 2

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Tools for Creating HTML Documents - NEED - Basic text editor such as Windows Notepad (free and smaller file sizes) OR - HTML Converter – translates formatted text into HTML code (Costly to purchase and larger file sizes) - Can create the source document in a word processor and then convert it – see demo of file size differences New Perspectives on HTML and XHTML, 5e 3

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition What are the steps to do a Simple Web Page? 1.Plan your page. 2.File Management 3.Open Notepad, type in your code, save file with.html extension at end. 4.Test your Web Page!

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Creating an HTML Document Plan out your Web page before you start coding Draw a planning sketch or create a sample document using a word processor Preparatory work can weed out errors or point to potential problems Organize your files – all Websites DEPEND upon file organization! New Perspectives on HTML and XHTML, 5e 5

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition REMEMBER THIS? Creating an HTML Document – Use this page as a template for your first page New Perspectives on HTML and XHTML, 5e 6 HELLO WORLD! My name is Mrs. Christina Morris and I teach this class. The official name is JavaScript/HTML Web Design, but we will call it Web Design. The Class Wiki is located at

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition PLANNING an HTML Document Identify a document’s various elements. An element is a distinct object in the document, like a paragraph, a heading, or a page’s title, or formatting features such as boldfaced font, and italicized text. Mark your elements with the correct tags - A two-sided tag is a tag and the general syntax for a two-sided tag is: content A two-sided tag’s opening tag ( ) and closing tag ( ) should completely enclose its content Elements can contain other elements –Tags cannot overlap New Perspectives on HTML and XHTML, 5e 7

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition The Basic Structure of an HTML File HTML is the root element - the opening tag marks the start of a document, and the closing tag tells a browser when it has reached the end of that document. Anything between these two tags is the document content. An HTML document has two main sections: the head and the body The head element contains information about the document, for example the document title or the keywords, used by browser search engines. The content of the head element is not displayed within the Web page New Perspectives on HTML and XHTML, 5e 8

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition The Structure of an HTML File The body element contains all of the content to appear on the Web page The body element contains HTML code (tags) that tells the browser how to render the content The title element contains the page’s title and a document’s title is displayed in the browser’s title bar The comment tag adds notes to your HTML code and are useful in documenting your code for yourself and others New Perspectives on HTML and XHTML, 5e 9

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Converting an HTML Document into XHTML There is considerable overlap between HTML and XHTML You can convert an HTML file into an XHTML file by replacing the opening tag with the following three lines of code: – New Perspectives on HTML and XHTML, 5e 10

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Displaying an HTML File As you continue modifying the HTML code, you should occasionally view it with your Web browser to verify that you have not introduced any errors You should view your work in several different browsers to check for compatibility of your code New Perspectives on HTML and XHTML, 5e 11

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Displaying an HTML File New Perspectives on HTML and XHTML, 5e 12

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Working with Block-Level Elements Block-level elements are elements that contain content that is viewed as a distinct block within the Web page Heading elements are block-level elements that contain the text of main headings on the Web page – content where n is an integer between 1 and 6 and is the largest heading while is the smallest OTHER TAGS - Paragraph, content –Block quote, enter content –A generic block-level element, enter content New Perspectives on HTML and XHTML, 5e 13

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition White Space and HTML HTML file documents are composed of text characters and white space White space is the blank space, tabs, and line breaks within the file HTML treats each occurrence of white space as a single blank space You can use white space to make your document CODE more readable New Perspectives on HTML and XHTML, 5e 14

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Making 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 New Perspectives on HTML and XHTML, 5e 15

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Making a List New Perspectives on HTML and XHTML, 5e 16

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Creating a Definition List The definition list contains a list of terms, each followed by the term’s description Web browsers typically display the definition description below the definition term and slightly indented: Basic Stick Easiest stick to learn New Perspectives on HTML and XHTML, 5e 17

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Using Other Block-Level Elements HTML supports the address element to indicate contact information Most browsers display an address element in an italicized font, and some right-justify or indent addresses New Perspectives on HTML and XHTML, 5e 18

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Using Other Block-Level Elements New Perspectives on HTML and XHTML, 5e 19

New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Tutorial 1 Summary Create a basic Web page using HTML coding tags Organize your code and your webpage files. Block-level elements such as underlines, paragraphs, headings, bold, italicize, etc., are available to the programmer. New Perspectives on HTML and XHTML, 5e 20