HTML Extension.

Slides:



Advertisements
Similar presentations
Lists in HTML PowerPoint How to create lists in HTML
Advertisements

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.
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
Web Page Development Identify elements of a Web Page Start Notepad
 2004 Prentice Hall, Inc. All rights reserved. Introduction to XHTML: Part 1.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
INSTRUCTIONAL SUPPORT SERVICES (ISS) SHORT COURSE, FALL 2012 UMSL Introduction to Web Page Design.
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.
1 Outline 3.1 Introduction 3.2 Editing HTML 3.3 First HTML Example 3.4 W3C HTML Validation Service 3.5 Headers 3.6 Linking 3.7 Images 3.8 Special Characters.
Web Design Unit Assignment #2: Job Skills Favorite Links Page You will create a HTML web page with links to informational websites about a variety of job.
Images in HTML PowerPoint How images are used in HTML.
Computing Theory: HTML Year 11. Lesson Objective You will: o Be able to define what HTML is - ALL o Be able to write HTML code to create your own web.
Fall 2005 Using FrontPage to Enhance Blackboard - Darek Sady1 Using FrontPage to Enhance Blackboard 1.Introduction 2.Starting FrontPage 3.Creating 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.
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.
Paul Mundy Microsoft FrontPage Tips and tricks.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
HTML file format  Lesson Objective: Understanding HTML and how it is used to create web pages.  Learning Outcome:  Create a HTML page by interpreting.
WEB DESIGN AND PROGRAMMING Introduction to XHTML.
Creating Your First Web Page – Topic: Creating a wiki, blog, image blog and podcast Click Arrow - Next Slide 1.
Images Worksheet. Web template Download the template folder Unzip and save in your documents Rename the folder to “images work” without quotes.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
This shows CIS17 and the first day introduction..
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
Click on CIS120/17 to go to website for course. The week of will tell you what is planned for the week and what has been assigned.
Creating Web Pages with Links, Images, and Embedded Style Sheets
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.
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 Web Page Design. Text book: HTML, XHTML, and CSS: Visual QuickStart Guide, Sixth Edition written by Elizabeth Castro. Software: Adobe® Dreamweaver®
Chapter 4 HTML Tags. HTML is written in something called tags. Tags come in pairs, an opening one and a closing one. The first pair of tags we'll write.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
Introduction to Programming
Getting Started – Basic Page Structure
Online PD Basic HTML The Magic Of Web Pages
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
Creating and Linking Web Pages
Basic HTML Tutorial Amber Brady.
BHS Web Design Mr. Campbell
LAB Work 01 MBA 61062: E-Commerce
Images in HTML PowerPoint How images are used in HTML
With Microsoft FrontPage 2000
Introduction to the Internet
Lists, Images, Tables and Links
HTML GUIDE Press F5 and then
Uppingham Community College
Intro to HTML Mr. Singh.
HTML Lesson 2.
Lists in HTML PowerPoint How to create lists in HTML
Chapter 6 Lists.
Chapter 4 - Introduction to XHTML: Part 1
HTML.
Programming for webpages
Practice: first_document.html
5.2.3 Be able to use HTML and CSS to construct web pages
Websites lesson 5.
Introduction to HTML- Basics
BUILDING A WEBSITE 7.4.2: Basics of HTML and CSS.
Hyperlinks 1 2.
For this assignment, copy and past the XHTML to a notepad file with the .html extension. Then add the code I ask for to complete the problems.
Creating and Editing a Web Page
Creating your first website
Creating your first website
WJEC GCSE Computer Science
HTML Lesson 3.
Images in HTML PowerPoint How images are used in HTML
Presentation transcript:

HTML Extension

Exercise 3 - Hyperlinks 1 2 What are the differences between these 2 hyperlinks??

Hyperlinks to different pages Create 2 new notepads (Save them as .htm) Add the text in each box to each notepad with the hyperlink at the bottom. Take a screenshot of the notepad like I have here – add this to your powerpoint Add a screenshot of each internet page – again add to your powerpoint

Exercise 4 You can display bulleted or numbered lists. For bulleted lists: The <UL> tag starts the list and </UL> ends it Individual items start with the <LI> tag. Open a new notepad and copy in the code on the right Take a screenshot of the notepad and the browser. <h1>Bulleted List</h1> <p>We have the following pets in our house:</p> <UL> <LI>A dog called shep <LI>A terrapin called Terry <LI>A rabbit called Pudding </UL> What is missing from these tags?

Different styles of bullet points <html> <body> <h2>Unordered List with Disc Bullets</h2> <ul style="list-style-type:disc"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> </body> </html> Circles Discs Squares Exercise 5 Create all 3 lists in notepad using the list style as shown in the box Take a screenshot of each of these bullet pointed lists in notepad and in a browser Label your lists to show what type it is.

Exercise 2: Other types of lists How do we write this list? Task 3 Research how to create a ordered list and a description list Take screenshots and add them to the powerpoint Add labels to your screenshots

Exercise 6: Images <HTML> <HEAD>   <HEAD> <TITLE>Image</TITLE> </head> <BODY> <H1> Three Cliffs Bay</H1> <img src="3CliffsBay.jpg"> </BODY> Create a New folder called Images Create a new notepad named ‘Images.htm’ (save it in the folder Images) Find an image of a landscape. Save the picture as a JPEG in the folder Add the following code to the notepad.

Another way is to add the URL – hyperlink to the image <img src="http://www.st-georgescofe.co.uk/wp-content/uploads/2011/02/Star.jpg">

Challenge!! With your song page, add the following: A Main page showing a list of the Artist/Band songs in an Album and other Albums A hyperlink to each song with the lyrics (formatted like the first one you did) An a saved image of the Artist/Band on the main page Add an image from the web of the album covers A hyperlink to an official artist/band website Save all of this in a separate folder in HTML named Song Project Attach the Main page and a separate page(with song lyrics on it) that has an image on it

Hyperlink to official website Hyperlink to pages showing lyrics to each song Image….. List type…