HTML Lesson 3.

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

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.
1 Lesson 5. 2 R3 R1 R5 R4 R6 R2 B B A A
HTML Overview - Text Markups. Before We Begin Make a copy of your HTML file you created in the previous lesson Make a copy of your HTML file you created.
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.
1 تقنيات الانترنت عال457 HTML. 2 HTML  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web. HTML is a text formatting.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
Anne McGrath 16 th February  Review of what we have learned so far.  Angled brackets surround HTML tags.  The words between the angled brackets.
How Tags are used to form your Web Page
Word Processing Word Processing
Adding HTML to Blackboard
Basic HTML UCR Webmasters Support Group Derk Adams.
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.
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.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module F Building a Web Page with HTML.
More Basic HTML. Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features Add alignments.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
15.2 More Basic HTML. More Basic HTML Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features.
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.
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.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Lesson 2: Basic HTML Code Basic HTML Code. HTML is an acronym for Hypertext Markup Language. Internet browsers translate the HTML code into texts and.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
HTML. Hypertext Markup Language Lesson Objectives 1. We will be able to understand the need for HTML and where it is used 2. We will be edit HTML to.
CREATING WEB PAGES Using…More HTML code! My First \ Web Page.
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
HTML Basics Let’s Make a Web Page. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a.
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML web page.
HTML— More Tags, Formatting, and Lists. Formatting Tags  Bold  Italics  Underline  Big text  Small text  Subscript (H 2 O)  Superscript (10 3 )
HTML Lesson 2. Review Questions  What are HTML tags used for?  What do HTML tags look like?  What are the 3 required HTML tags?  In what section of.
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.
Marquees and Tables. Tags Fun Stuff Here! Creates text that scrolls from right to left! Animated text. This is a great tag but does not work on every.
Spiderman ©Marvel Comics Creating Web Pages (part 1)
Basic HTML Programming Technology Education Ellsworth Community Middle School Communication Systems.
HTML NOTES October 6, Starting a document and saving  Always use notepad  Use _ for spaces otherwise it won’t work  When saving make sure you.
HTML Basic Structure. Page Title My First Heading My first paragraph.
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.
Opening a File 1.Open Word 2.Click the Microsoft Office button(Very top left hand corner). A menu appears 3.Click Open. The Open dialog box appears 4.Use.
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
Revised June 2008 Online PD Basic HTML1 Let’s Try It!  Open Notepad oStart > All Programs > Accessories > Notepad oDon’t get WordPad by mistake – won’t.
How to make a brochure Go to Microsoft word 2007 and select any online template on brochure.
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.
Let’s Try It! Open Notepad
Online PD Basic HTML The Magic Of Web Pages
Extended Learning Module F
Internet Exploration: HTML Basics
TinyMCE Editor.
Chapter 17: Document Production (Word)
HTML GUIDE Press F5 and then
Uppingham Community College
HTML Lesson 2.
Internet Exploration: HTML Basics
A guide to HTML.
HTML.
Essentials of HTML.
Web pages Lesson 3.
Web pages Lesson 4.
HTML Extension.
Hyperlinks 1 2.
Creating your first website
Creating your first website
WJEC GCSE Computer Science
Hypertext Markup Language
Hyper text markup Language
Presentation transcript:

HTML Lesson 3

Task 1 Write all of this in your powerpoint: Write out what HTML is, what it stands for in 4 bullet points Find out what are HTML Tags? Write 3 bullet points Write out the headers in the picture below into a notepad document Add them to a new notepad document Save this as Headers.htm Take a screenshot of both the internet page and notepad Describe what the following tags do: <p> <br> <body>

Task 2 Find the song lyrics to your favourite song. Copy and paste these into a new notepad document Save your notepad as the song title.htm Add the appropriate HTML Tags (<p>, <br>, headings, HTML, BODY) Save it as a .htm file and take a screenshot and add it to your powerpoint. Don’t forget to add start tags and end tags otherwise it will not work.

Title tag Heading Tags New break on each line A break between each paragraph to make a space

Task 3 Take a screenshot of both your song lyrics in your notepad document and on the internet Use the following HTML to change the alignment of your song. Add it into the Body tag or in a p tag. <Center> </Center> Take a screenshot of this and add it to your powerpoint

Exercise 1: Formatting Text <HTML> <HEAD> <TITLE>Text Format</TITLE> </HEAD> <BODY>   <H1>Different Text Format</H1> <P> This text is in bold </P> <P> This text is underline </P> This text is in italic <BR> This text is strike <BR> This text is centred<BR> This text is bold and italic<BR> </BODY> </HTML> Research on the internet how to change the text: Bold Underlined Italics Striked through Centred Create a new notepad document and add these to the following text on the right Do not forget to save your document (Save as…) Format.htm

Screen-shot this and add this to your Powerpoint Open the file on the internet (find where you saved it in your documents - your page should display something that looks similar to the page below. Screen-shot this and add this to your Powerpoint

Exercise 2: Colours Copy the text on the right into a new notepad Save this as Colours.htm Open it up in the internet – what happens?? Take a screenshot of both the notepad and the internet page and add it to your powerpoint Write down what happened when you opened it up <HTML> <HEAD> <TITLE>Colour</TITLE> </HEAD> <BODY TEXT="white" BGCOLOR=“blue”> <H1>Colours</H1> <P>The background colour of this page is blue. </P> <P>The text colour on this page is white. </P> </BODY> </HTML>

How to change specific lines to specific colours? Look Up How to change specific lines to specific colours? Screenshot this and add it to your powerpoint Challenge! Add a colour background to your song notepad Add different coloured text to your song