HTML Lesson 3.

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

Introduction to HTML Lists, Images, and Links. Before We Begin Save another file in Notepad Save another file in Notepad Open your HTML, then do File>Save.
Creating a Web Page HyperText Markup Language. HTML Documents  Created using any text editor  Notepad  Vi, Pico, or Emacs  If using word-processor,
ETT 429 Spring 2007 Web Design I.
Introduction to HTML. What is a Web site? A collection of "pages" or files linked together and available on the World Wide Web What do you need to create.
Web Development 311 Fall : Fall Why web pages? Most companies have intranets, extranets, and web sites Content can be changed quickly and.
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.
Did someone say Music? November 7, Adding MUSIC to a web page: 1. Find your music! 2. A good website is 3. You will.
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.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
Tutorial #2 Creating Links. Tutorial #1 Review Basic Page (DOCTYPE, HTML, Head, Title, Body) Tags Structure( ),,,,,, Nested Tags content Tag Attributes.
Creating Web Documents Wk 2: HTML & PSP basics Discuss sites HTML, PSP lesson Assignment: first Web page due Day class: 1/23; Night class 1/28.
1 Essential HTML coding By Fadi Safieddine (Week 2)
Adding Hyperlinks To a Web Page. Hyperlink and Its Add-Ons Main way to connect web pages and move throughout a web site. Uses the Anchor Tag which is.
Lesson 9: Using Excel with the Internet Microsoft Office Excel 2003 Lesson 9 Using Excel with the Internet.
OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and.
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
CHAPTER 4 LINKS Creating links between pages Linking to other sites links.
WEB DESIGN UNIT 2 Unit 2 Module 2-5. WHAT HAVE YOU LEARNED?  What is the title tag do? Where does it show?  What are the tags that need to be on every.
Processing.js.
HTML Hyper Text Markup Language. What is an HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup.
Enhancing Your Web Site—Adding Links Web Page **YOU MUST HAVE COMPLETED THE 1ST 3 WEB PAGES BEFORE YOU CAN DO THIS ONE. **YOU SHOULD HAVE COMPLETED THE.
Week 1 – Beginners Content McAfee & Big Fish Games CoderDojo.
HTML: Images and Links Many Thanks to “Joe,” at index.html, from whom I got these lessons!
Images Worksheet. Web template Download the template folder Unzip and save in your documents Rename the folder to “images work” without quotes.
Welcome to the Circus! A step by step process to making your own Google Site for the NEW Northern Potter Website!
M Dixon 1 Tech HTML. M Dixon 2 Admin Attendance Register: –log in to your profile.
Mark Dixon Page 1 Soft – HTML. Mark Dixon Page 2 Admin Attendance Register: –log in to your profile.
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 Design Part I. Click Menu Site to create a new site root.
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
User Guide Contact for any
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
HINDU STYLE PORTFOLIO TEMPLATE
This shows CIS17 and the first day introduction..
Links and Images. Links HTML uses a hyperlink to link to another document on the Web A hyperlink can be either text or a picture Links are created with.
HTML Lesson 2. Internal Hyperlinks  Internal Hyperlink is a link that links to another page within a website.  Make another page using notepad++: page2.html.
Your HTML website creating your first html file. Creating an HTML FIle Open note pad from accessories, programs. Write code. Save and view. In 3 Steps.
HTML Review * is used as a reference for most of the notes in this powerpoint.
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. 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.
Lists Ordered Unordered. List Components  OR  Plus Star Wars Avatar Vacation.
Basic Web Page Design. Text book: HTML, XHTML, and CSS: Visual QuickStart Guide, Sixth Edition written by Elizabeth Castro. Software: Adobe® Dreamweaver®
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.
Introduction to HTML Hypertext Mark-up Language. HTML HTML = Hypertext Mark-up Language Is just plain simple text marked up by “tags” You can create a.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
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.
Connecting From Home Editing at Home(You don’t have to.)
What you can see in the picture?
Let’s Try It! Open Notepad
Online PD Basic HTML The Magic Of Web Pages
Weebly Elements, Continued
HTML Lesson 2.
Essentials of HTML.
HTML.
Ford Library Career Tools
Essentials of HTML.
Basic HTML and Embed Codes
Starting to develop a website
Open Adobe Photoshop CS5
Nerd Website HTML.
HTML Links.
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Enhancing Your Web Site—Adding Links Web Page
HTML Structure.
Making a website.
Lesson 7 Graphics.
HTML.
Presentation transcript:

HTML Lesson 3

Links to a different web page in your site Make another page using notepad: page2.html Here’s how to connect (link) your pages together On page1.html type the following tag <a href=“page2.html”> Click here for the next page </a> Words that show up as A link on the page The link tag The page to jump to

Link to a different web site (like google) On your web page in notepad type: < a href=“http://www.google.com”> Click here for google </a> What’s the difference between this and a link to another page in your site? Words that show up as a link on the page The site to jump to The link tag

Attributes and Elements extra bits of information inside a tag. <img src=“name picture“ / > <body bgcolor=“red” > <a href=“page2.html”> I’m a link </a> Elements Another name for the begin and end tag and everything in between Everything that is in-between and includes the <body> and </body> tags is the body element. <title> and </title> are tags, BUT <title>Rumple Stiltskin</title> is a title element.

Adobe Photoshop Tool to edit pictures (and more!) Start->All Programs->Adobe Design Premium CS3-> Adobe Photoshop CS3 Open a picture (File -> Open) To reduce the size Image ->Image Size Change one dimension, the other will change automatically Save it as “image small.jpg”

Some other useful links you might want to make Links to a picture(click on words and open a picture) < a href=“picture.jpg”> Click here to see my picture </a> Thumbnail (click on small pic to open big pic) < a href=“BigPicture.jpg”> <img src = “SmallPic.jgp” /> </a> Email Links < a href=“mailto:vtulowitzky@goapa.org”> Email me </a>

Let’s Use this stuff - LINKS! Make a second page for your site by opening notepad and creating page2.html (file-> new, file -> save as) Add all the required tags (what are they) Add a title and a comment to your page Open the first page and add a link called “Click Here to See Second”. When you click on this link, it should open the second page Open the second page and add a link called “Click Here to See My First Page”. When you click on this link, it should open your first page On the second, create a link that opens a picture. For example, if your second page is about a band, you can have the words “see the band” open a picture of the band. Don’t forget to download the picture into your project folder. Create a thumbnail. Use Photoshop to make a small version of your picture. Put the small picture on your second page and when you click on it, make a big version of the same picture open. On your first page, add an email link Make the words “Email me” send an email to “bogusemail@yahoo.com”