Hyperlinks, Images, Comments, and More…

Slides:



Advertisements
Similar presentations
Iframes & Images Using HTML.
Advertisements

1 Cascading Style Sheets Continued Different kinds of selectors in a style sheet –Simple- Pseudo-Class –Contextual- Pseudo-Element –Class Image Styles.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 4 Key Concepts 1 Copyright © Terry Felke-Morris.
Introduction to Web Site Development Steven Emory Department of Computer Science California State University, Los Angeles Lecture 3: Hyperlinks and Images.
 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.
 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.
Chapter 3 Adding Images in HTML. Agenda Understanding Web Page Images Prepare Your Images for the Web Insert an Image Specify an Image Size Add Alternative.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Fluency with Information Technology Third Edition by Lawrence Snyder Chapter.
Links in HTML. Hyperlinks or links Millions of linked web pages make up the World Wide Web Used to connect a web page to another web page on the same.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
WEB DESIGN USING DREAMWEAVER. The World Wide Web –A Web site is a group of related files organized around a common topic –A Web page is a single file.
XHTML Images. Images are important Purpose: to enhance your web site. Add only when they complement or add additional impact to your message.
Agenda Links External and Internet Links Anchor Tag Text Hyperlinks Image Hyperlinks Images Image Attributes: src, alt, width, height, align, border.
CSCE Chapter 5 (Links, Images, & Multimedia) CSCE General Applications Programming Benito Mendoza 1 By Benito Mendoza Department.
HTML Overview Part 4 – Tables 1. HTML Tables  Tables are defined with the tag pair.  A table is divided into rows with tag pairs. o tr stands for "table.
Images Inserting an image on a web page. chcslonline.org2 ITEMS REQUIRED Go to the course download page on the course website and download the 3 images.
Images (1) Three most popular formats – Graphics Interchange Format (GIF) – Joint Photographic Experts Group (JPEG) – Portable Network Graphics (PNG) –
Images in HTML PowerPoint How images are used in HTML.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
Linking web pages Wah Yan College (Hong Kong) Mr. Li C.P.
HTML and XML Behind Web Authoring Tools. 2 Objectives Introduce HTML Learn HTML Step by step Introduce XML.
Adding Images Learning Web Design: Chapter 7. Using an Image Images have many purposed on a Web site Used as a static image To add illustration: ex. A.
XHTML Hyperlinks. Creating Links to Other Web Pages A link, or hyperlink, is a specially formatted Web page object that the user can click to open a different.
WEB DESIGN AND PROGRAMMING Introduction to XHTML.
Internet Applications Development Lecture 4 L. Obead Alhadreti.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
Project Two Adding Web Pages, Links, and Images Define and set a home page Add pages to a Web site Describe Dreamweaver's image accessibility features.
FILE TYPES FOR WEB DESIGN 1 HOW SHOULD I SAVE?. GRAPHICS INTERCHANGE FORMAT (GIF) Best used for flat-color, sharp-edged art or text Clip art, logos Compression.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Links in HTML What you need to know….. Hyperlinks or links Millions of linked web pages make up the World Wide Web Used to connect a web page to another.
HTML Chapter 4 Source: CSE 190 M (Web Programming) lecture notes, es/slides/lecture02-basic_xhtml.html.
HTML Links HTML uses a hyperlink to another document on the Web.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
1 2/22/05CS120 The Information Era Chapter 4 Basic Web Page Construction TOPICS: Images and placing pages on the server.
REEM ALMOTIRI Information Technology Department Majmaah University.
Chapter 5 BIE2313 | Web design. ALL RIGHTS RESERVED No part of this document may be reproduced without written approval from Limkokwing University of.
Introduction to Programming the WWW I CMSC Winter 2003 Lecture 4.
HTML III ECT 270 Robin Burke.
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Basic HTML Tutorial Amber Brady.
What is HTML? Acronym for: HyperText Markup Language
Images in HTML PowerPoint How images are used in HTML
Images, Links and Multimedia
Hosted by Coach Slanina
Chapter 1: Introduction to XHTML (part 1)
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Chapter 4 - Introduction to XHTML: Part 1
HTML Images CS 1150 Spring 2017.
Web Development & Design Foundations with HTML5 7th Edition
Adding Images.
Chapter 2 Adding Web Pages, Links, and Images
Graphics (Characteristics 1)
Computers and Scientific Thinking David Reed, Creighton University
Creating a Web Page Using HTML
HTML Introduction Lecture 8.
Introduction to HTML- Basics
HTML Images CS 1150 Fall 2016.
Pertemuan 1b
Adding Images.
Introduction to HTML.
Adding Images.
Pertemuan 1 Desain web Pertemuan 1
Lesson 3: Cascading Style Sheets (CSS) and Graphical Elements
Adding Images.
Adding Images.
Images in HTML PowerPoint How images are used in HTML
Presentation transcript:

Hyperlinks, Images, Comments, and More… Dreamweaver for College & Business Mrs. Wilson

Hyperlinks Also called a “link” Is text displayed in a browser window that can be “clicked” to display a different HTML document By default, hyperlinks are displayed as blue underlined text; visited links are displayed in purple The anchor tag <a> is used in an HTML document to mark text that is a link

Example <html> <head> <title>Images</title> <body> Images come from a variety of sources. The sources that you may wish to use include <a href=“http://www.google.com”>a web browser</a>. </body> </html> The href stands for hypertext reference and is the element The <a> is the element. This ends the link

Notice that the link above is in blue because it has NOT been visited. Finished Page Notice that the link above is in blue because it has NOT been visited. The text “a web browser” is called the hyperlink label.

Types of Links Document-relative links External or absolute links These are the links that you have on your site They are in the same web site Example: <a href=“page2.html”>link</a> External or absolute links A hyperlink that displays a web page document in another website is “external” You MUST include the full path that includes the http:// Example: <a href=“http://www.google.com”>GOOGLE</a>

Adding Images The <img src=“file name”> tag inserts an image where file name is the name of the graphic. Only GIF, JPG, and PNG formats can be seen on the WWW. img is the element src is the attribute

Adding Images Additional attributes Border=“value” Alt=“value” Important for ADA compliance (see page 55) Height=“value” Width=“value” Border, height, and width should be specified in pixels. Pixels is short for picture element and a graphic is made up of thousands of pixels.

Types of Images GIF JPG PNG Graphics Interchange Format is limited to 256 colors and is best used for clip art and logos JPG Joint Photographic Experts Group format supports millions of colors and is best used for photographs PNG Portable Network Graphic format is a newer format only supported by newer browser versions.

Accessibility In response to the ADA (American with Disabilities Act), enacted in 1990, the W3C has developed guidelines called the Web Accessibility Initiative (WAI). These guidelines call for alternative text to be provided for any content on a web page that is NOT text.

Assignment Due 10/14 Complete part 3 of 5 on pages 53 and 54 When you finish, begin exercise 4 on page 68 in your textbook You will be creating 4 separate pages about a movie that you have recently seen You will include images and links (document-relative links)