A guide to HTML.

Slides:



Advertisements
Similar presentations
HTML popo.
Advertisements

A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
HTML Minute University Richard Fisher 10/1/2001 HTML FSA Training2 HTML Overview  HTML  HyperText Markup Language.
Hypertext Markup Language. Platform: - Independent  This means it can be interpreted on any computer regardless of the hardware or operating system.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Creating a Web Page HyperText Markup Language. HTML Documents  Created using any text editor  Notepad  Vi, Pico, or Emacs  If using word-processor,
HTML Lesson 1 TBE 540 Farah Fisher. Prerequisites Before beginning this lesson, the student must be able to… Access web pages and navigate the web Access.
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
HTML Basics An Introduction to HTML. What is HTML? Stands for “Hyper Text Markup Language” Composed of “tags” which are surrounded by sideways triangles.
 Definition of HTML Definition of HTML  Tags in HTML Tags in HTML  Creation of HTML document Creation of HTML document  Structure of HTML Structure.
Basic HTML The Magic Of Web Pages. Create an HTML folder  Make a folder in your H drive and name it “HTML”. We will save EVERYTHING for this unit here.
Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use.
HTML. We’ll learn … What HTML is What tags are What a basic web page looks like What 3 HTML tags are required What HTML comments look like How to title.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
HTML (HyperText Markup Language)
CP2022 Multimedia Internet Communication1 HTML and Hypertext The workings of the web Lecture 7.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Just Enough HTML How to Create Basic HTML Documents.
All you ever needed to know…and more!. H.T.M.L. HyperText Mark-up Language Web’s programming language All web browsers Set of instructions Written with.
Creating Webpage Using HTML
HTML Codes Miss B.
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,
1 Creating Web Pages Part 1. 2 OVERVIEW: HTML-What is it? HyperText Markup Language, the authoring language used to create documents on the World Wide.
HTML: Hyptertext Markup Language Doman’s Sections.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
HTML file format  Lesson Objective: Understanding HTML and how it is used to create web pages.  Learning Outcome:  Create a HTML page by interpreting.
HTML HTML: Hypertext Markup Language. The basic language of the World Wide Web. Developed around 1991 at the CERN lab on the French-Swiss border by Tim.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
HTML GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
HTML HyperText Markup Language. Text Files An array of bytes stored on disk Each element of the array is a text character A text editor is a user program.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HyperText Markup Language. Web Hosting Creating a web site (on a site like iPage) –Buy domain name ( –iPage has registrar (e.g., FastDomain.
HTML HYPER TEXT MARKUP LANGUAGE. INTRODUCTION Normal text” surrounded by bracketed tags that tell browsers how to display web pages Pages end with “.htm”
This shows CIS17 and the first day introduction..
Getting Started with HTML. HTML  Hyper Text Markup Language  HTML isn’t a program language, its known as a markup language  A Markup language has tags.
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
Using HTML. Glogger Glogger is like you own personal web page, you can add… Pictures Text Videos Music, etc… Modify and adjust anything you want Glogger.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
HTML Overview.  Students will learn: How HTML tagging works How browsers display tagged documents How an HTML document is structured.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language.
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.
Intranets & HTML.
Online PD Basic HTML The Magic Of Web Pages
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Aside on Conversions  . Aside on Conversions  
Introduction to basic HTML
Elements of HTML Web Design – Sec 3-2
HTML GUIDE Press F5 and then
CSCI-235 Micro-Computers in Science
Uppingham Community College
Creating a Home Page in HTML
Introduction to XHTML.
Elements of HTML Web Design – Sec 3-2
WEBSITE DESIGN Chp 1
10 Minute University Richard Fisher
Computers and Scientific Thinking David Reed, Creighton University
Introduction to HTML- Basics
Introduction to HTML5.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
HyperText Markup Language
The Most Basic HTML Page
An Introduction to HTML Pages
Lesson 2: HTML5 Coding.
WJEC GCSE Computer Science
Presentation transcript:

A guide to HTML

HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1

Basic page <html> <body> Search engines </body> How to put a simple phrase on a web page A basic HTML web page is a text file containing special markers. You can construct a text file for a web page using Notepad. The special markers are used by the web browser to display the text or pictures on the web page. The markers are called tags. A tag is enclosed by < and >. Tags almost always work in pairs. There will be a starting tag <HTML> and a finishing tag </HTML>. In between, a pair of <BODY> tags will indicate where the main part of the text begins and ends. All pairs of tags always surrounds the item they describe.

Basic page <html> <body> <h1>Search engines</h1> </body> </html> How to create headings <H1> </H1> are placed around a heading to indicate that it is a heading. The number after H indicates the relative importance of the heading. The tag <H1> is a larger, more important looking, style than <H2>. Here are some more tags to try. <B> </B> Bold <I> </I> Italic The <h1> tag sets text as a heading in style 1. Valid tags are <h1>; <h2>; <h3>; <h4>; <h5>; <h6>. What effect does changing the number have?

Basic page <html> <body> <h1>Search engines</h1> Yahoo<br> Excite<br> Google<br> </body> </html> How to add ordinary text To add ordinary text, type in the required text. If you press the RETURN key, the web browser will ignore it. <br> Creates a break in the line, and is one of the very few tags that is used on its own. <P> </P> Is used to begin and end a paragraph. <br> creates a line break <p> and </p> can be used to begin and end a paragraph

Adding hyperlinks <html> <body> <h1>Search engines</h1> <a href="http://www.yahoo.com">Yahoo</a><br> <a href="http://www.excite.co.uk">Excite</a><br> <a href="http://www.google.fr">Google</a><br> </body> </html> How to add hyperlinks Adding a hyperlink (a link to another place) is done with a pair of tags: <a href ….> </a>. The <a> tag is wrapped around the text. The tag <a href …> includes a reference to the required URL. This must be in quotation marks and be preceded by an equals sign, e.g. <a href="http://www.altavista.com/">Alta Vista</a> The browser will display the text as a link by underlining the text. The cursor will change to a hand when it is over the reference. Clicking on the link will take the user to the new page. Headings on web pages are never underlined in case they are confused with hyperlinks. The URL of a hyperlink must be enclosed in quotation marks

Adding the title <head> The title is not the same as the page heading <html> <head> <title>Information on search engines</title> </head> <body> <h1>Search engine</h1> <a href="http://www.yahoo.com">Yahoo</a><br> <a href="http://www.excite.co.uk">Excite</a><br> <a href="http://www.google.fr">Google</a><br> </body> </html> How to add the title for the page The <HEAD> </HEAD> section goes before the <BODY> tag. Anything here is seen by the browser but is not displayed on the web page. It is used to place coding about the style and format of the page. The title is displayed in the top bar of the web browser to indicate the content. A search engine will look at it to find the content of the page and will use this information to index it. The title of the web page document is not necessarily the same as the heading on the web page.

Creating the HTML file The text file can be created in a simple text editor such as Notepad. The file name must have .htm at the end to indicate a web page. The file contains instructions to the web browser which describe how the page should look. Creating and saving your web page Your text file for a web page must be saved with a suffix of .htm to indicate a web page. You must not use any spaces in the file name.