1 / 28

آموزش طراحی وب سایت جلسه سوم– لینک ها و آدرس دهی

آموزش طراحی وب سایت جلسه سوم– لینک ها و آدرس دهی. تدریس طراحی وب برای اطلاعات بیشتر تماس بگیرید تاو شماره تماس: 09125773990 09371410986 پست الکترونیک : TargetLearning@gmail.com. Links and Navigation. Basic Links. <a href=”index.html”>index page</a>.

Download Presentation

آموزش طراحی وب سایت جلسه سوم– لینک ها و آدرس دهی

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. آموزش طراحی وب سایتجلسه سوم– لینک ها و آدرس دهی تدریس طراحی وببرای اطلاعات بیشتر تماس بگیرید تاوشماره تماس: 0912577399009371410986پست الکترونیک : TargetLearning@gmail.com

  2. Links and Navigation

  3. Basic Links <a href=”index.html”>index page</a>. <a href=”http://www.Google.com/” title=”Search the Web with Google”>Google</a> is a very popular search engine.

  4. Linking to E-mail Addresses • <a href=”mailto:name@example.com”>E-mail us</a>.

  5. Understanding Directoriesand Directory Structures

  6. http://www.ExampleNewsSite.com/Business/ http://www.ExampleNewsSite.com/Entertainment/Music/

  7. The main directory …. root folder • subdirectory • parent directory subdirectory

  8. What a URL Is Made Up Of?

  9. The Scheme • http:// Hypertext Transfer Protocol (HTTP) is used to request pages from web servers and send them back from web servers to browsers. • https:// • ftp:// • file

  10. The Scheme • http:// • https:// Secure Hypertext Transfer Protocol (HTTPS) encrypts the data sent between the browser and the web server using a digital certificate. • ftp:// • file://

  11. The Scheme • http:// • https:// • ftp:// File Transfer Protocol is another method for transferring files on the Web. • file://

  12. The Scheme • http:// • https:// • ftp:// • file:// Used to indicate that a file is on the local hard disk or a shared directory on a LAN.

  13. The Host Address It can either be an IP address (four sets of numbers between 0 and 255, for example, 192.0.110.255) or more commonly the domain name for a site such as www.sabadekala.com

  14. The Filepath • /books/newReleases/BeginningWebDevelopment/Overview.html

  15. Other Parts of the URL

  16. Credentials http://administrator:letmein@www.wrox.com/administration/index.html

  17. Ports • Ports are like the doors to a web server. A web server often has several server programs running on the same machine, and each program communicates using a different port. • http://www.wrox.com:8080/index.html

  18. Fragment identifiers can be used after a filename to indicate a specific part of the page that a browser should go to immediately. http://www.wrox.com/newTitles/index.html#HTML

  19. Query String • http://www.wrox.com/search.aspx?searchTerm=HTML

  20. Absolute and Relative URLs

  21. Test.htm <body> <a href="test.htm">test.htm</a><br /> <a href="Images1/1.htm">Images1/1.htm</a><br /> <a href="Images02/2.htm">Images02/2.htm</a><a href="Images1/1.htm"></a> </body>

  22. Test1.htm <a href="../test.htm">../test.htm</a><br /> <a href="../Images02/2.htm">../Images02/2.htm</a><br /> <a href="../Images1/1.htm">../Images1/1.htm</a>

  23. 2.htm <a href="../test.htm">../test.htm</a><br /> <a href="../Images1/1.htm">../Images1/1.htm</a><br /> <a href="../Images02/2.htm">../Images02/2.htm</a>

  24. linking to a specific part of a page

  25. <h2><a id="URL">URLs</a></h2> ..... <p><a href="#top">Back to top</a></p> <h2><a id="SourceAnchors">Source Anchors</a></h2> .... <p><a href="#top">Back to top</a></p> <h2><a id="DestinationAnchors">Destination Anchors</a></h2> .... <p><a href="#top">Back to top</a></p> <h2><a id="Examples">Examples</a></h2> ..... <p><a href="#top">Back to top</a></p>

  26. <ul> <li><a href="#URL">URLs</a></li> <li><a href="#SourceAnchors">Source Anchors</a></li> <li><a href="#DestinationAnchors">Destination Anchors</a></li> <li><a href="#Examples">Examples</a></li> </ul>

  27. Advanced E-mail Links <a href=”mailto:info@example.org? subject=XHTML&cc=sales@example.org”> </a>

More Related