How to get there from here. Lesson 5 – Unit E. Library.

Slides:



Advertisements
Similar presentations
CSS-Formatting Review Cascading Style Sheets addstyle to your HTML web pages.
Advertisements

CSS The basics { }. CSS Cascading Style Sheets - language used to – describe html appearance & formatting Style Sheet - file that describes – how html.
Cascading Style Sheets CSS. What is it? Another file format ! its not like html Describes the looks of “selectors” in a.css file (example.css) in the.
CSS Link Styling. The Anchor Element: Link text between the opening and closing can be styled using CSS. Some of the properties that can be set are: font-family,
HTML5 and CSS3 Illustrated Unit E: Inserting and Working with Links
WEB DESIGN – SEC 4-11 PART OR ALL OF THIS LESSON WAS ADAPTED FROM THE UNIVERSITY OF WASHINGTON’S “ WEB DESIGN & DEVELOPMENT I ” COURSE MATERIALS PSEUDO-CLASS.
Need to define two things: › The destination › Something to click on to get there  Tag is click here  Can be text, special character or image (next.
Ch. 5 Web Page Design – Templates and Style Sheets Mr. Ursone.
Chapter 9. Links  When styling a link, you must tell CSS both what you want to style, and when you want the style to happen  Web browsers keep track.
Design, Formatting, CSS, & Colors 27 February, 2011.
Links and Comments.
JMD2144 – Lesson 5 Web Design & New Media. ‘Div’ide and conquer One of the most versatile structure tags available is the.. tag Short for ision, it allows.
HTML Tags. Objectives Know the commonly used HTML tags Create a simple webpage using the HTML tags that will be discussed.
Link and Table in HTML. Statistics HTML review The two faces of a HTML file In a notepad program. In a internet browser program. The function of HTML.
Review: Three parts to a webpage: - Content - Structure  XHTML - Presentation  CSS In this chapter we will focus on introducing and examining the mechanics.
Using Styles and Style Sheets for Design
HTML Essentials HyperText. Why HyperText ? Hypertext is text or pictures which reference other pages which the reader can immediately access Hypertext.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Doing L I N K S Links 1: Internal Links Links to anchors on the current page (Internal).
Today’s objectives  Review  CSS | Rules | Declarations  HTML Structure document  Class asignment.
Part 1: CSS - Why? - How it works - Writing rules - Examples.
Tutorial #4 Formatting Text and Links. Tutorial #3 Review - CSS CSS format Selector { property1: value1; /* Comments */ } Embedded, In-Line, and External.
Cascading Style Sheets Part 1. CSS vs HTML HTML: Originally intended to markup structure of a document (,...,,,,,...) CSS Developing technology, CSS1,
CSS Tutorial 1 Introduction Syntax How to use style specifications. Styles.
Creating Links. The Anchor Element: The anchor tag can be used in three different ways: 1.External link – to link to a web page outside your own website.
 Good navigation is consistent, clearly labeled, and reflects the needs of the site’s audience.  Navigation labels are short, clear, and user-friendly.
ECA225 Applied Interactive Programming Cascading Style Sheets, pt 1 ECA 225 Applied Online Programming.
CSS Class 2 -Add margins to elements on a page. -Set width and height of elements. - CSS shorthand properties for box model. -Style links. -Style tables.
The Web Wizard’s Guide To DHTML and CSS Chapter 1 A Review of CSS1.
>> More on CSS Selectors. Pre-requisite Open the file called sample.txt Copy the all the text from the file Open your browser and go to codepen.io Paste.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
HTML Links HTML uses a hyperlink to another document on the Web.
Images. Intro What is it? Getting your image Inserting Moving Resizing Cropping.
HTML Comprehensive Concepts and Techniques Second Edition Project 2 Creating a Web Site with Links.
IS1825 Multimedia Development for Internet Applications Lecture 12: IDs, Classes and Internal CSS Rob Gleasure
Microsoft Expression Web 3 – Illustrated Unit G: Designing Site Navigation.
Hyperlink ● Anchor tag and its attributes ● Four Types of URL ─ ─ Absolute addressing ─ Relative addressing ─ Intrapage ● Attributes -- link, vlink,
Chapter 5 BIE2313 | Web design. ALL RIGHTS RESERVED No part of this document may be reproduced without written approval from Limkokwing University of.
Advanced CSS. Display  Hiding an element can be done in two ways  display:none  Element is hidden and will no longer take up space on the page  Can.
Quick Review Several important items from Lesson Five.
Company LOGO In the Name of Allah,The Most Gracious, The Most Merciful King Khalid University College of Computer and Information System Web pages Development.
ECA 228 Internet/Intranet Design I Cascading Style Sheets.
Links All CSS properties can be applied on links (i.e. change colors, fonts, underline, etc). The new thing is that CSS allows you to define these properties.
1 Cascading Style Sheets
Cascading Style Sheets
Links and Comments in HTML5
Creating Your Book Review Web Site
Links and Comments.
Cascading Style Sheets contd: Embedded Styles
Lecture 3 Sarsenova Zhibek.
Cascading Style Sheets
Links. Links Links Need to define two things: The destination Something to click on to get there Tag is click here Can be text, special.
Introduction to web design discussing which languages is used for website designing
Chapter 7 Page Layout Basics Key Concepts
Cascading Style Sheets
Unit F Inserting and Working with Links.
COMP 101 Review.
Links.
Inserting and Working with Links
>> Dynamic CSS Selectors
Links and Comments.
Links.
Part 1: Cascading Style Sheets
Links and Comments.
Links and Comments.
HTML LINKS
Introduction to Styling
Styling Links.
CGS 3066: Web Programming and Design Fall 2019 CSS Extra
Presentation transcript:

How to get there from here. Lesson 5 – Unit E

Library

Call numbers

Book Look Up – Old Way

Book Look Up - Online

Web Address is like a call number to locate a page.

The href tag has two major parts web address what to click on

Clickable item Clickable item

Address can be:Clickable item can be:  file name  folder(s)/file name  web address  location within a page  special item  text  image (or media)  text and image is a valid web address is a NOT a valid web address WHY?

Another page in same location. my second page A page that is external to the page. news Click on an image.

A different spot in the page – jump links taxes Need to create a location to jump to (also called a target) Open the new item in a different window (or tab). cat Open an composition window. me

Link States Link States "LoVe HAte" a:link link that has not been visited a:visited link that has been visited a: hover link that mouse is currently pointing over a:active link that is being clicked (literally during the time the users are clicking it.) ALWAYS SPECIFY IN THIS ORDER.

Focus Focus "LoVe Fears HAte" Applies while the link has focus—for example while a keyboard user’s cursor is on that link. Note: IE does not currently support the focus state, and just uses active in place of focus.

Traditionally, text links were blue if not visited and purple if visited, and there is still reason to believe that these are the most effective colors to use, although, again, with the increasingly widespread use of CSS, this is becoming less commonplace and the average user no longer assumes that links must be blue or purple.

Step 1 – Add link styles a:link { color: red; } a:visited { color: green; } a:hover { color: orange; } a:active { color: silver; }

PSEUDO CLASS Categorization of web page elements. Based on a relationship or condition of the element at a given moment, rather than a static property value. Allows you to style content dynamically. selector:pseudo-class {property:value;}

Step 2 - Add pseudo class #menu a:link { color: gold; } #menu a:visited { color: cadetblue; } #menu a:hover { color: lime; } #menu a:active { color: tomato; }

Step 3 - Add div to menu links and name it menu. | Outside | Inside | Dachshund Info | Dog Gone |