Uniform Resource Locators (URLs)

Slides:



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

II. Basic Web Concepts.
Introduction to Computing Using Python CSC Winter 2013 Week 8: WWW and Search  World Wide Web  Python Modules for WWW  Web Crawling  Thursday:
HTML5 and CSS3 Illustrated Unit E: Inserting and Working with Links
Relative and Absolute Relative Absolute.  In web-page design, a hyperlink (or link) is a reference to a document that the reader can directly follow,
HTML Introduction (cont.) 10/01/ Lecture 8, MAT 279, Fall 2009.
27 September. Thursday’s Current Event: Follow Up Lands End Already offers VoIP eBay to purchase Skype Connect buyers and sellers Google Offers instant.
CS 142 Lecture Notes: URLs and LinksSlide 1 Uniform Resource Locators (URLs) Scheme Host Name.
13 February Building a Web Page. Links Links: One always links to an anchor point Every page has an implicit anchor point at the start In addition, can.
A field is a unit of information. Limit search by the title field.
Internal and External Links Web Design – Section 3-6 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development.
آموزش طراحی وب سایت جلسه سوم– لینک ها و آدرس دهی تدریس طراحی وب برای اطلاعات بیشتر تماس بگیرید تاو شماره تماس: پست الکترونیک :
Review: How do you change the border color of an image?
CS 190 Lecture Notes: Tweeter ProjectSlide 1 Uniform Resource Locators (URLs) Scheme Host.
TCP/IP Protocols Dr. Sharon Hall Perkins Applications World Wide Web(HTTP) Presented by.
1.  Use the anchor element to link from page to page  Configure absolute, relative, and hyperlinks  Configure relative hyperlinks to web pages.
Web Authoring Rico Yu. Ch.6 Planning for a Web Site Introduction Steps in setting up Needs Planning.
English Comprehension and Composition – Lecture 13 Objectives: Run on Sentences and Practice Exercises Sentence Fragments and Practice Exercises.
Internal and External Links Web Design – Section 3-6 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development.
Internal and External Links Web Design – Section 3-6 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development.
Chapter 1 Web Page Building Blocks. Elements, Attributes & Values ElementAttr 1Value 1Attr 2Value 2.
CSU Extension Webpage template Session 7.  Named anchors are spots within a page you can link to “Anchors” a specific part of the page Has a name so.
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.
Links Building a Website Lesson 5. Links There are various ways to use links on a website: Link to other sites Link to other pages on the same site .
Source Page US:official&tbm=isch&tbnid=Mli6kxZ3HfiCRM:&imgrefurl=
Hyperlink ● Anchor tag and its attributes ● Four Types of URL ─ ─ Absolute addressing ─ Relative addressing ─ Intrapage ● Attributes -- link, vlink,
Introduction to Web Authoring Ellen Cushman our syllabus
CS 140 Lecture Notes: Virtual MachinesSlide 1 Process Abstraction Instruction Set Registers MMU I/O Devices Physical Memory Virtual Memory System Calls.
Creating Website Using FrontPage 2003 By Heidi Lee.
1 3/2/05CS120 The Information Era Chapter 4 Basic Web Page Construction TOPICS: Hyperlinks.
Путешествуй со мной и узнаешь, где я сегодня побывал.
HTML5 and CSS3 Illustrated Unit E: Inserting and Working with Links.
HTML Links CS 1150 Spring 2017.
4.01 How Web Pages Work.
Internal and External Links
Uniform Resource Locators (URLs)
Internal and External Links
Hyperlink Anchor tag and its attributes Four Types of URL
LINKS.
Web Engineering Hyperlinks, Tables, Frames Lecture 04
Web Design and Development
Page 1. Page 2 Page 3 Page 4 Page 5 Page 6 Page 7.
Website URL
Uniform Resource Locators
CS 140 Lecture Notes: Virtual Machines
Inserting and Working with Links
How files are organized
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
CS 142 Lecture Notes: Security Attacks: Phishing
Uniform Resource Locators (URLs)
Hyperlink Anchor tag and its attributes Four Types of URL
CS 140 Lecture Notes: Virtual Machines
Uniform Resource Locators (URLs)
Uniform Resource Locators (URLs)
Unit 3 Test Building a Web Site Test.
CS 140 Lecture Notes: Demand Paging
CS 140 Lecture Notes: Introduction
CS 140 Lecture Notes: Demand Paging
Uniform Resource Locators
Adding Links Chapter 6 4/9/2019.
Chapter 6 pp
CS 140 Lecture Notes: Introduction
COMS 161 Introduction to Computing
4.01 How Web Pages Work.
CS 140 Lecture Notes: Virtual Machines
Uniform Resource Locators (URLs)
HTML Links CS 1150 Fall 2016.
Introduction to Web Authoring
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> Relative location: <a href="2008/March.html"> same as http://www.xyz.com/news/2008/March.html Absolute location in same site: <a href="/stock/quote.html"> same as http://www.xyz.com/stock/quote.html New location, same page: <a href="#sec3"> Anchor definition: <a name="sec3">...</a> CS 142 Lecture Notes: URLs and Links

CS 142 Lecture Notes: URLs and Links