Web Design and Development

Slides:



Advertisements
Similar presentations
The Web Wizards Guide to HTML Chapter Four All About Hyperlinks.
Advertisements

Computing – Weekly Review By Callum Innes HTML WWW WYSIWYG URL Hyperlink.
World Wide Web Hyperlinks Servers/Clients Browsers HTML (HyperText Markup Language)
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.
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.
1 Linking Web Pages Why is Hypertext Hyper? Storyboarding Page Links (Site Map) Sequential and Indexed-Sequential Designs Hierarchical Design Custom Design.
Computer Science 103 Chapter 2 HyperText Markup Language (HTML)
Lecture 13. A Very Brief Introduction to HTML and XHTML, part II Instructor: Jie Yang Department of Computer Science University of Massachusetts Lowell.
CORE 2: Information systems and Databases HYPERTEXT/ HYPERMEDIA.
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.
Shows the entire path to the file, including the scheme, server name, the complete path, and the file name itself. Same idea of stating your full name,
Chapter 6 The World Wide Web. Web Pages Each page is an interactive multimedia publication It can include: text, graphics, music and videos Pages are.
Tutorial #2 Creating Links. Tutorial #1 Review Basic Page (DOCTYPE, HTML, Head, Title, Body) Tags Structure( ),,,,,, Nested Tags content Tag Attributes.
Informatics Computer School CS114 Web Publishing HTML Lesson 2.
Web Design (5) Navigation (1). Creating a new website called ‘Navigation’ In Windows Explorer, open the folder “CU3A Web Design Group”; and then the sub-folder.
Copyright (c) 2004 Prentice-Hall. All rights reserved. 1 Committed to Shaping the Next Generation of IT Experts. Project 4: Creating Hyperlinks Kelly L.
Internet Applications Development Lecture 5 L. Obead Alhadreti.
Adding Hypertext Links to a Web Page Tutorial 2 eXtensible Markup Language (XML)
Linking web pages Wah Yan College (Hong Kong) Mr. Li C.P.
 The tag to create a link is called, which stands for anchor.  You put the address of the page to link to in quotes after href=, like the following:
1.  Use the anchor element to link from page to page  Configure absolute, relative, and hyperlinks  Configure relative hyperlinks to web pages.
Enhancing Your Web Site—Adding Links Web Page **YOU MUST HAVE COMPLETED THE 1ST 3 WEB PAGES BEFORE YOU CAN DO THIS ONE. **YOU SHOULD HAVE COMPLETED THE.
Unit 3 Day 6 FOCS – Web Design. Journal Unit #3 Entry #4 Write the source code that would make the following display on a rendered page: Shopping List.
Web software. Two types of web software Browser software – used to search for and view websites. Web development software – used to create webpages/websites.
INTRODUCTORY Tutorial 6 Using Links on a Web Page.
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.
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.
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.
And adding hyperlinks. MyWebpage Everything that we want in our website, including other folders, documents, xhtml files, image files, css files should.
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
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.
Website design and structure. A Website is a collection of webpages that are linked together. Webpages contain text, graphics, sound and video clips.
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 .
Lesson 6 Links. Creating Folders  For every web site/page, you need to create a separate folder  The computer cannot find links if they are not stored.
1 More About HTML Images and Links. 22 Objectives You will be able to Include images in your HTML page. Create links to other pages on your HTML page.
Hyperlink ● Anchor tag and its attributes ● Four Types of URL ─ ─ Absolute addressing ─ Relative addressing ─ Intrapage ● Attributes -- link, vlink,
Session: 4. © Aptech Ltd. 2Creating Hyperlinks and Anchors / Session 4  Describe hyperlinks  Explain absolute and relative paths  Explain how to hyperlink.
XP 1 Charles Edeki AIU Live Chat for Unit 2 ITC0381.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 2 Creating Links.
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.
HTML5 and CSS3 Illustrated Unit E: Inserting and Working with Links.
4.01 How Web Pages Work.
HTML Links CS 1150 Spring 2017.
4.01 How Web Pages Work.
4.01 How Web Pages Work.
Web-based structures, links and testing
BSBEBU401A Review and Maintain a Website HTML
Internal and External Links
Uppingham Community College
Sec (4.3) The World Wide Web.
Internal and External Links
Hyperlink Anchor tag and its attributes Four Types of URL
Some Common Terms The Internet is a network of computers spanning the globe. It is also called the World Wide Web. World Wide Web It is a collection of.
Creating Links.
Web software.
Understanding the internet
Hyperlink Anchor tag and its attributes Four Types of Hyperlink
Inserting and Working with Links
Lesson Objectives Lesson Outcomes
Hyperlink Anchor tag and its attributes Four Types of URL
Creating Links.
HTML Links.
Lesson 4: Hyperlinks.
Adding Links Chapter 6 4/9/2019.
Chapter 6 pp
4.01 How Web Pages Work.
HTML Links CS 1150 Fall 2016.
4.01 How Web Pages Work.
Creating Links.
Presentation transcript:

Web Design and Development Implementation – HTML Links

Learning Intention I will learn how webpages are linked to other webpages.

What is a URL? Uniform Resource Locator Full web address that is used to access a web page directly a unique address for a file on the internet

URL structure http://www.bbc.co.uk/news/Scotland/index.htm http - protocol – Hyper Text Transfer Protocol www.bbc.co.uk - domain name /news/Scotland/ - folder path index.htm - name of file

More HTML Tags Open Tag Close Tag What the Tag does <a> </a> anchor tag adds a hyperlink to another webpage. Uses the href attribute to specify where to link to. e.g. <p>Click <a href=“www.bbc.co.uk”>here</a> to go to the BBC website</p>

What is a hyperlink? A link between web pages, documents or files Hyperlinks are activated by clicking on them Internal hyperlink goes to another page within the same website External hyperlink goes to a different website

Absolute hyperlinks absolute addressing is used when we include the whole URL to link to a web page <a href=“http://www.bbc.co.uk/news”>BBC</a> usually used when linking from one website to another website [can be used for links within a website]

Relative hyperlinks relative addressing is used – this means the file location is based on (relative to) the current file can only be used for internal links e.g. <a href=“. . /. . /index.htm”>Home page</a> no protocol or domain name is needed . . / means to move up one folder

apple.png bananas.htm foods chips.htm fresh frozen drinks index.htm apples.htm fizzy.htm tesco.com still.htm images pear.png

Relative hyperlinks (cont) e.g. to link to chips.htm from index.htm: <a href=“foods/frozen/chips.htm”>Chips</a> e.g. to link to still.htm from bananas.htm: <a href=“../../drinks/still.htm”>Chips</a>

Success Criteria I can describe the parts of a URL, how hyperlinks are structured and can link webpages.