Chapter 7 Absolute/relative hyperlinks Frag id 3-column site

Slides:



Advertisements
Similar presentations
Coding a Responsive HTML
Advertisements

Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 7 Key Concepts 1 Copyright © Terry Felke-Morris.
MIS 425 Lecture 2 – HTML Navigation, Colors, tables and Styles Instructor: Martin Neuhard
Web Development & Design Foundations with XHTML Chapter 7 Key Concepts.
Web Development & Design Foundations with XHTML Chapter 7 Key Concepts.
CONCEPTS FOR FLUID LAYOUT Web Page Layout. Website Layouts Most websites have organized their content in multiple columns (formatted like a magazine or.
Media Queries Jeffery Davis CIT media is used to define different style rules for different media types and devices. Media queries.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 7 Key Concepts 1 Copyright © Terry Felke-Morris.
Chapter 8 More on Links, Layout, and Mobile Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
TUTORIAL 8: Enhancing a Web Site with Advanced CSS
Kathy E. Responsive Design and Twitter Bootstrap.
Chapter 8 More on Links, Layout, and Mobile Copyright © 2013 Terry Ann Morris, Ed.D revised by Bill Pegram, 9/24/
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
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.
Chapter 18 Web Design April 16 th & 17 th. Content The most essential element of any Web page is the content Before you begin a Web page you want to know.
Creating A Site Using A Template In Dreamweaver CS6 Cakes R Us!
Web Technologies Website Development Trade & Industrial Education
The Internet and the World Wide Web. The Internet A Network is a collection of computers and devices that are connected together. The Internet is a worldwide.
Week 8 – Part 3 More on Links, Layout, and Mobile Key Concepts 1.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
XP Dreamweaver 8.0 Tutorial 3 1 Adding Text and Formatting Text with CSS Styles.
Copyright 2012 Adobe Systems Incorporated. All rights reserved. ® Copyright 2010 Adobe Systems Incorporated. All rights reserved. ® Copyright 2012 Adobe.
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.
1.  Use the anchor element to link from page to page  Configure absolute, relative, and hyperlinks  Configure relative hyperlinks to web pages.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 7 Key Concepts 1 Copyright © Terry Felke-Morris.
Use CSS to Implement a Reusable Design Selecting a Dreamweaver CSS Starter Layout is the easiest way to create a page with a CSS layout You can access.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 5 Key Concepts 1 Copyright © Terry Felke-Morris.
Web Design (8) Images (2). My Holiday Photos An exercise in adding and linking images. Create a new website folder calling it ‘My Holiday Photos’. In.
Tutorial 3 Adding and Formatting Text with CSS Styles.
Writing a Web Page. Using Frontpage FrontPage is a user-friendly WYSIWYG html editor. To begin, open the program and a new page. FrontPage is a user-friendly.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 7 Key Concepts 1 Copyright © Terry Felke-Morris.
COMP 143 Web Development with Adobe Dreamweaver CC.
CONCEPTS FOR FLUID LAYOUT Web Page Layout. Essential Questions What challenges do mobile devices present to Web designers? What are the basic concepts.
HTML5 and CSS3 Illustrated Unit E: Inserting and Working with Links.
HTML Links CS 1150 Spring 2017.
4.01 How Web Pages Work.
Web Development & Design Foundations with HTML5
School of Business Administration
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
4.01 How Web Pages Work.
Objective % Select and utilize tools to design and develop websites.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Web Development & Design Foundations with HTML5 7th Edition
Web Development & Design Foundations with HTML5 8th Edition
Concepts for fluid layout
Intro to Dreamweaver Web Design Section 8-1
Bare bones notes.
Web Development & Design Foundations with HTML5
Objective % Select and utilize tools to design and develop websites.
Web Development & Design Foundations with HTML5 8th Edition
Web Development & Design Foundations with HTML5 7th Edition
Chapter 8 More on Links, Layout, and Mobile Key Concepts
What Designers Need to Know about Accessibility (A11y)
CMP Creating Your Personal and Small Business Web Sites
Chap 7 Abs/rel hyperlinks Frag id Sprites (Student presentation)
Chap 7 Abs/rel hyperlinks Frag id Sprites (Student presentation)
Web Development & Design Foundations with H T M L 5
Basics of Web Design Chapter 8 More on Links, Layout, and Mobile Key Concepts Copyright © 2014 Terry Ann Morris, Ed.D.
Some Stuff You Need to Know
Bare bones notes.
Chapter 7 Absolute/relative hyperlinks Frag id 3-column site
Introduction to HTML.
Web Development & Design Foundations with HTML5
Concepts for fluid layout
4.01 How Web Pages Work.
HTML Links CS 1150 Fall 2016.
Various mobile devices
© 2017, Mike Murach & Associates, Inc.
Presentation transcript:

Chapter 7 Absolute/relative hyperlinks Frag id 3-column site CSS printing Mobile display Responsive design with media queries ARIA – Accessible Rich Internet Applications Also from previous Chapter: Thumbnail images

More on Relative Linking Relative links from the Home page: index.html <a href="contact.html">Contact</a> <a href="rooms/canyon.html">Canyon</a> <a href="../index.html">Home</a> <a href="../events/weekend.html">Weekend</a> Relative links from the Canyon page: rooms/canyon.html

RELATIVE LINKS & SOURCES Both files on same level: filename.ext example: <img src="banner.jpg"> Folder on same level as your file: foldername/filename.html Link to a folder one level up: ../foldername/filename.html

The Target Attribute The target attribute on the anchor element opens a link in a new browser window or new browser tab. <a href="http://www.facebook.com" target="_blank"> Facebook </a>

ARIA Accessible Rich Internet Applications ARIA provides methods to increase accessibility of web pages and applications. Landmark roles configures semantic descriptions of HTML elements. Examples are: banner, navigation, main, complementary, contentinfo, form, and search Coded as: <header role=“banner”> The assistive device would understand these roles banner (a header/logo area) navigation (a collection of navigation elements) main (the main content of a document) complementary (a supporting part of page, designed to complementary to main content) contentinfo (an area that contains information about the content such as copyright ) form (an area that contains a form) search (an area of a web page that provides search functionality)

Thumbnails Rules Crop images so that they are equal height and/or width. Must have both large and small image for sake of bandwidth.

Ideas and Visual Inspiration for sidebars Keep sidebars clean, uncluttered and engaging. Add design elements to accentuate parts of 3 column website. Do not neglect text. What to include in sidebars. Creative and beautiful ideas See next slide for sidebar or other designs…

CSS Styling for print Reason: To control what gets printed and how printouts are configured. Commonly used techniques Hide non-essential content Font & color best suited for printing Page breaks Print hyperlinks For practice, we will create a print stylesheet using your artist website. Or the 7.5 folder.

Designing for Mobile Web From both Chapter 5 & 7 Three approaches to consider: Develop a separate site with a .mobi extension Create separate site targeted to mobile users Apply responsive design techniques via CSS (See CofC)

Mobile Design Considerations Best practices for optimized sites include: Small screen size – e.g. resize header area Low band width – avoid large images Font, color, etc. – choose good contrast, etc. Awkward controls; limited processor & memory – maybe single column. Consider other touches and navigation Functionality– display important links under header Additional best practices on pages 328-330. Many of these you already do – such as consistent navigation, h1, and small images.