Web page - A Web page is a simple text file that contains HTML tags (code) that describe what should be displayed on the browser. -The Web browser interprets.

Slides:



Advertisements
Similar presentations
HTML popo.
Advertisements

HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.
XHTML Week Two Web Design. 2 What is XHTML? XHTML is the current standard for HTML Newest generation of HTML (post-HTML 4) but has many new features which.
Web Development & Design Foundations with XHTML
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
HTML: HyperText Markup Language Hello World Welcome to the world!
Chapter 2 HTML Basics Key Concepts
Anne McGrath 16 th February  Review of what we have learned so far.  Angled brackets surround HTML tags.  The words between the angled brackets.
XHTML Basics.
1. Content – Collective term for all text, images, videos, etc. that you want to deliver to your audience. 2. Structure – How the content is placed on.
How Tags are used to form your Web Page
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 3: XHTML Coding © 2007 Prosoft Learning Corporation All rights reserved ITD 110 Web Page.
Site Development Foundations © 2004 ProsoftTraining All rights reserved.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Beginning Web Site Creation: Dreamweaver CS4 Noreen Brown XHTML CODING -- TAGS.
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.
HTML Computing Concepts HTML - An Introduction 1.
23-Jun-15 HTML. 2 Web pages are HTML HTML stands for HyperText Markup Language Web pages are plain text files, written in HTML Browsers display web pages.
Chapter 1 Understanding the Web Design Environment
Developing a Basic Web Page with HTML
Tutorial 3: Adding and Formatting Text. 2 Objectives Session 3.1 Type text into a page Copy text from a document and paste it into a page Check for spelling.
Basics of HTML.
Chapter 1 Variables in the Web Design Environment
Creating a Simple Page: HTML Overview
Chapter 4 Fluency with Information Technology L. Snyder Marking Up With HTML: A Hypertext Markup Language Primer.
CHAPTER 1 GETTING STARTED WITH HTML. LEARNING OBJECTIVES How a Web browser downloads and processes an HTML page for display What is the purpose of a Web.
Creating a Web page Using Basic HTML By: Magdalena Martinez CIEP 491 (W 6:00) Assessment #12.
Chapter 4: Hypertext Markup Language Primer TECH Prof. Jeff Cheng.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
Web page - A Web page is a simple text file that contains a set of HTML tags (code) that describe (to the browser) what should go on a web page. It may.
1 HTML intro The development of HTMLThe development of HTML The transition from HTML to XHTMLThe transition from HTML to XHTML XHTML syntax, tags, and.
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.
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.
1 Web Developer Foundations: Using XHTML Chapter 2 Key Concepts.
XHTML. Introduction to XHTML What Is XHTML? – XHTML stands for EXtensible HyperText Markup Language – XHTML is almost identical to HTML 4.01 – XHTML is.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
Introduction to HTML. What is HTML? Hyper Text Markup Language (HTML) is a language for describing web pages. HTML is not a programming language, it is.
XP New Perspectives on The Internet, Sixth Edition— Comprehensive Tutorial 8 1 Creating Effective Web Pages Creating HTML Documents Tutorial 8.
Web Page Creation Part I ST: Introduction to Web Interface Design Prof. Angela Guercio.
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.
Copyright © Osmosys O S M O S Y SO S M O S Y S D e p l o y i n g E x p e r i e n c e & E x p e r t i s e™ HTML Training.
Web Development & Design Foundations with XHTML Chapter 2 HTML/XHTML Basics.
1 Web Application Programming Presented by: Mehwish Shafiq.
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.
Getting Started with Marking Up Page Content. Tag defines a paragraph Automatically creates some space before and after itself Code Browser Display.
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.
Formatting Text with HTML. Objectives: Students will be able to: Define the structure of the document with block elements Format numbered, bulleted, and.
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.
Copyright © 2013 Pearson Education, Inc. Publishing as Pearson Addison-Wesley What did we learn so far? 1.Computer hardware and software 2.Computer experience.
11 Introduction to HTML. 2 Objectives You will be able to Create a simple web page in HTML using a plain text editor. Publish your page on the web so.
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
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.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML.
Text Elements. We've already learned about the,,,, and elements. Now let's learn some elements that we'll use to present actual text content on our web.
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.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
XHTML Basics.
XHTML Basics.
XHTML Basics.
XHTML Basics.
XHTML Basics.
Getting Started with Marking Up Page Content
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

Web page - A Web page is a simple text file that contains HTML tags (code) that describe what should be displayed on the browser. -The Web browser interprets these tags to decide how to format the text onto the screen.

Anatomy of a web page  HTML – HyperText Markup Language  WHAT content goes in the web browser.  Not a programming language! But a language for programs to interpret into web pages.  XHTML – eXtensinble HTML  Latest standard of HTML  XML and HTML have a kid  Stricter, but easier to get what you want on the screen.  Still an.html file, still called “hypertext”  CSS – Cascading Style Sheets  HOW your content is depicted in the web browser. .css files

Web browsers  Browsers are client programs that gather information from web servers  They interpret hypertext (HTML)  Different browsers can have different interpretations.

Viewing the Source  Let's take a look at the "guts" of a Web page. This is the original text and HTML tags typed by the author and interpreted by the browser to produce the Web page you actually SEE on the Internet.  With your mouse, right-click on any blank portion of a web page and choose "View Source."  A new window will appear, displaying words and characters, some of which may look pretty technical and foreign. Each element within that code is known as an HTML tag.

Viewing the Source… You can look "behind the scenes" of almost any page on the Internet this way. When you become more involved in Web designing, you'll probably find yourself viewing the sources of complicated Web pages in order to learn the codes that the authors, or page designers, used to create such interesting arrangements

HTML tags:  Tags are encased in symbols ALWAYS  Ex. or

Two types of tags  Tag pairs (these contain something within a beginning and ending tag that is marked with a /)  Ex.  Standalone tags (these mark the place of something. They also have a / followed by the ending >)  Ex.

Want to look up a tag?  W3C has a comprehensive guide to all possible tags  They list all available up-to-date tags  They explain how to use the tag  They show examples  They list possible attributes and values 

Creating a Simple Page  There are many ways to create Web pages. Hundreds of companies have created tools to help with the process in one way or another. Our goal here, however, is to understand how Web pages really work, rather than have a tool hide the process from us. Therefore, we will use the simplest tools possible -- the ones already on your machine.  On your machine you have a program, or application, that can create simple text files. On Windows machines, this application is called Notepad.

Web Page Anatomy <!DOCTYPE.. goes before HTML document begins goes in here Visible text and other tags go in here.

Basic HTML Skeleton  Once you have the proper program open on your screen, type the following HTML text into the window: My First Page Hello there. This is my first page! Whether you put the tags and text side-by-side, row- by-row or indented will not make a difference in how the text is displayed in a browser window. Whether you use uppercase or lowercase letters within your tags also does not make a difference.

Bold, & Italics Make any piece of text bold by adding the tag: to the beginning of the text, and adding the closing tag: wherever you want the bold attribute to end. (you can also use This is strong.  To emphasize text, use these tags in the same manner:..... This is emphasized.

Breaks & Paragraphs Although your typed text may contain carriage returns, tabs and extra spaces, browsers will not see them. You will have to use tags in order to create blank space in your HTML documents. creates a break between one line and another. You can use several of these tags together to create blank space. This line is broken. creates an extra space between two lines of text. If you place in a line of text, it will only break the line; if you use, it will both break the line and create an extra space. This line is spaced. This line is spaced. creates a horizontal rule, or horizontal line. This is a horizontal rule: ___________ This is a horizontal rule:

Sizes You can also change the font size by using the tags and : Heading tags also change font size, creating a bold "heading" for a paragraph or story: This is small text. This is big text. This is an H1 heading. This is an H2 heading. This is an H3 heading.

Comment Tag Mark assignments with this

Lists  Unordered List (bulleted list)   Ordered List (numbered list)   Code Godfather Casablanca list elements Looks like… 1.Godfather 2.Casablanca

Ordered Lists… An ordered list is a list of items in a logical, numbered order. Use the tags and to start and end this kind of list. Again, the tag is used in front of each item. Example: oranges grapes cherries

Customizing Ordered Lists You can change the type of organization by adding a "type" designation within the tag. orders the list by capital letters: (A, B, C...) orders the list by small letters: (a, b, c...) orders the list by Roman numerals: (I, II, III...) orders the list by small Roman numerals: (i, ii, iii...) If you would like to start your ordered list with a specified value, such as "6," use the following "start" and "value" tags:

Nested lists  Nested means “encased within”  You can put lists INSIDE of other lists and mix and match list types  Code Godfather Don Corleone Sonny Corleone American Beauty Lester Burnham Carol Burnham Looks like… Godfather 1.Don Corleone 2.Michael Corleone American Beauty 1.Lester Burnham 2.Carol Burnham

Special characters  What happens if you need to actually have as part of the text on your page?  Code names and code numbers (39)  Always begin in an ampersand (&)  Always end in semicolon (;)