Uniform Resource Locators (URLs)

Slides:



Advertisements
Similar presentations
CIS 1315 – Web Development for Educators CIS 1315 HTML Tutorial 2: Developing a Web Site.
Advertisements

Introduction to Computing Using Python CSC Winter 2013 Week 8: WWW and Search  World Wide Web  Python Modules for WWW  Web Crawling  Thursday:
Beginning Web Site Creation: Dreamweaver CS4 Noreen Brown XHTML CODING -- TAGS.
HTML Introduction (cont.) 10/01/ Lecture 8, MAT 279, Fall 2009.
CS 142 Lecture Notes: URLs and LinksSlide 1 Uniform Resource Locators (URLs) Scheme Host Name.
A field is a unit of information. Limit search by the title field.
Understanding HTML Style Sheets. What is a style?  A style is a rule that defines the appearance and position of text and graphics. It may define the.
آموزش طراحی وب سایت جلسه سوم– لینک ها و آدرس دهی تدریس طراحی وب برای اطلاعات بیشتر تماس بگیرید تاو شماره تماس: پست الکترونیک :
CS 190 Lecture Notes: Tweeter ProjectSlide 1 Uniform Resource Locators (URLs) Scheme Host.
CHAPTER 3 USING HYPERLINKS TO CONNECT CONTENT. LEARNING OBJECTIVES How to use the and anchor tag pair to create a text-based hyperlink. How to use the.
LEARN THE QUICK AND EASY WAY! VISUAL QUICKSTART GUIDE HTML and CSS 8th Edition Chapter 6: Links.
1.  Use the anchor element to link from page to page  Configure absolute, relative, and hyperlinks  Configure relative hyperlinks to web pages.
IS 360 Declaring CSS Styles. Slide 2 Introduction Learn about the three ways to declare a style Inline / embedded / external Learn about the effect of.
Web software. Two types of web software Browser software – used to search for and view websites. Web development software – used to create webpages/websites.
Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 12 This presentation © 2004, MacAvon Media Productions Hypertext and Hypermedia.
Chapter 1 Web Page Building Blocks. Elements, Attributes & Values ElementAttr 1Value 1Attr 2Value 2.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
When you are linking your Web site together, use relative URLs. A relative URL gives the path to the file to which you wish to link, relative to the page.
CSCI N241: Fundamentals of Web Development Copyright ©2006  Department of Computer & Information Science Navigation, Links & Images.
Hyperlink ● Anchor tag and its attributes ● Four Types of URL ─ ─ Absolute addressing ─ Relative addressing ─ Intrapage ● Attributes -- link, vlink,
Creating Website Using FrontPage 2003 By Heidi Lee.
1 3/2/05CS120 The Information Era Chapter 4 Basic Web Page Construction TOPICS: Hyperlinks.
Hyperlinks Links for Other Pages. Hyperlink (aka Link) Text (or image) user can click Takes user to different location In general, location can be: On.
Refresher Lectures WEBPG2/CWP 112 by CSN. Refresher Lectures The Internet and WWW HTTP HTML URL.
CSU - DCE Webmaster I HTML & URLs - Fort Collins, CO Copyright © XTR Systems, LLC Designing Web Sites With HTML - Using Effective Links Instructor:
Building CSS in Visual Studio Slide 2 Introduction Using the different HTML (and other) Visual Studio Editors CSS tools.
HTML5 and CSS3 Illustrated Unit E: Inserting and Working with Links.
HTML Links CS 1150 Spring 2017.
External Style Sheets.
CSS Cascading Style Sheets
Web Development & Design Foundations with HTML5
Site Organization.
Web Development & Design Foundations with HTML5 8th Edition
Cascading Style Sheets
IS 360 Declaring CSS Styles
Uniform Resource Locators (URLs)
Hyperlink Anchor tag and its attributes Four Types of URL
Hosted by Coach Slanina
LINKS.
Simple PHP An Introduction.
Web Development & Design Foundations with HTML5
Web Engineering Hyperlinks, Tables, Frames Lecture 04
Relative Paths.
Web Design and Development
Hyperlink Anchor tag and its attributes Four Types of Hyperlink
Hypertext and Hypermedia
Uniform Resource Locators
Cascading Style Sheets
Site Organization.
Cascading Style Sheets
How files are organized
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
CS 142 Lecture Notes: Security Attacks: Phishing
Uniform Resource Locators (URLs)
HTML Tags and References to other Files
Uniform Resource Locators (URLs)
Hyperlink Anchor tag and its attributes Four Types of URL
Uniform Resource Locators (URLs)
protocol relative URLs
Uniform Resource Locators
Adding Links Chapter 6 4/9/2019.
Chapter 6 pp
HTML & CSS 7 Languages in 7 Days.
Web Development & Design Foundations with HTML5
COMS 161 Introduction to Computing
Uniform Resource Locators (URLs)
HTML Links CS 1150 Fall 2016.
Introduction to Web Authoring
One Set of Styles Connected to As Many Pages as You Want!!!
ME 123 Computer Applications I Lecture 38: More on HTML 5/20/03
Presentation transcript:

Uniform Resource Locators (URLs) Scheme Port Number Query http://www.company.com:81/a/b/c.html?user=Alice&year=2008#p2 Host Name Hierarchical portion Fragment CS 142 Lecture Notes: URLs and Links

CS 142 Lecture Notes: URLs and Links <a> Examples Full URL: <a href="http://www.xyz.com/news/2009.html">2009 News</a> Absolute location in same site: <a href="/stock/quote.html"> same as http://www.xyz.com/stock/quote.html Relative location: <a href="2008/March.html"> same as http://www.xyz.com/news/2008/March.html Anchor definition: <a name="sec3">...</a> New location, same page: <a href="#sec3"> CS 142 Lecture Notes: URLs and Links

CS 142 Lecture Notes: URLs and Links Other Uses of URLs Images: <img src="icon.gif" /> Stylesheets: <link rel="stylesheet" type="text/css" href="main.css" /> Embedded page: <iframe src="http://www.google.com" /> CS 142 Lecture Notes: URLs and Links

CS 140 Lecture Notes: File Systems