Uppingham Community College

Slides:



Advertisements
Similar presentations
Html: getting started HTML is hyper text markup language. It is what web browsers look at on the Internet. HTML documents should be created in a simple.
Advertisements

Hyper Text Markup Language.  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
WeB application development
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
How Tags are used to form your Web Page
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.
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.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
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)
Using HTML to Create a Basic Web Page… By Josh Gallagan.
Basic HTML Hyper text markup Language. Re-cap  … - The tag tells the browser that this is an HTML document The html element is the outermost element.
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 CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
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.
Web Programming Basics of HTML. HTML stands for Hyper Text Mark-up Language A mark-up language is different than those that you have learned before in.
15.1 Fundamentals of HTML.
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-
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,
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.
15.1 Fundamentals of HTML DeKalb County School System.
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 Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
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.
Notes Test #2 will be held one week from this Thursday Check to see if you have a Vision account –Launch Netscape –Point & Click to location and type vision.
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
Behind every site is a mix of special languages that your web browser understands The main way of describing any website is HTML HTML stands for Hyper.
HTML HTML stands for Hyper Text Markup Language. HTML is used in making the base of a Website You can just use an online website maker like weebly.com.
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.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
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.
HTML Structure & syntax
Online PD Basic HTML The Magic Of Web Pages
Introduction to HTML.
HTML Basics.
Aside on Conversions  . Aside on Conversions  
Introduction to basic HTML
Elements of HTML Web Design – Sec 3-2
HTML GUIDE Press F5 and then
WEB PAGES: CREATING AND MAINTAINING **
Elements of HTML Web Design – Sec 3-2
A guide to HTML.
WEBSITE DESIGN Chp 1
Web Design and Development
Introduction to HTML5.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
HyperText Markup Language
The Most Basic HTML Page
The language of the internet
An Introduction to HTML Pages
The language of the internet
15.1 Fundamentals of HTML 2 assignments: 1—complete the worksheet
WJEC GCSE Computer Science
Presentation transcript:

Uppingham Community College Basic Web Pages

Web Design and Internet Safety In this unit you are going to: Design a website to teach Year 6 and Year 7 students all about being safe on the Internet. Today you are going to: Look at how websites are constructed Understand HTML Create your first web page using Notepad

What are you going to learn? Which programming language is used to produce web pages?

HYPER-TEXT MARKUP LANGUAGE Which programming language is used to produce web pages? Hyper-text markup language

Year 8 – Basic Page Find NOTEPAD from Accessories and open it up so that you’re ready to code your own web page 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.

Year 8 – Basic Page <body> Search engines </body> <html> </html> 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.

Saving your 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.

Year 8 – Basic Page 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

Year 8 – Basic Page 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.

Year 8 – Basic Page 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.

Year 8 – Basic Page 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.

Saving your file (REMINDER) 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.

Task / Success Criteria You’re required to make a simple HTML web page using HTML You must meet the requirements shown on the next slide 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.

Use the previous slides to help you develop a web page using HTML code Success Criteria What should there be evidence of 1 Build a webpage from HTML code 2 Include a page title 3 Include the use of <BR> 4 Include the use of external links 5 Make use of headings 6 Challenge – Can you make multiple pages and link them together Use the previous slides to help you develop a web page using HTML code