We Recommend

HTML: The Definitive Guide HTML: The Definitive Guide
They teach you that learning HTML is like learning any other language and that reading a book of rules can only take you so far. Readers begin writing what may be their first Web page just two pages into the book's second chapter. From there on, they provide a wide range of HTML coding to allow readers to learn from good examples. The book includes a handy "cheat sheet" of HTML codes for quick reference.


Posted By

brent-man on 05/19/08


Tagged

link html apple head rel meta Itouch


Versions (?)


Who likes this?

3 people have marked this snippet as a favorite

pixeldata
visuallyspun
jserpa


html head


Published in: HTML 


  1.  
  2. <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  3.  
  4.  
  5. <link rel="stylesheet" type="text/css" href="style.css" />
  6.  
  7. <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
  8. <link rel="apple-touch-icon" href="/customIcon.png" />
  9.  
  10. <link rel="home" title="Homepage" href="http://www.yoursite.com" />
  11. <link rel="contents" title="Site Map" href="http://www.yoursite.com/sitemap.xml" />
  12. <link rel="search" title="Search this site" href="http://www.yoursite.com/search/" />
  13. <link rel="author" title="Email Author" href="mailto:you@yoursite.com" />
  14. <!-- Leading page -->
  15. <link rel="first" title="first page" href="firstpage.html" />
  16. <!-- Page prior to current page -->
  17. <link rel="prev" title="the page before" href="previous.html" />
  18. <!-- Page after current page -->
  19. <link rel="next" title="the next page" href="next.html" />
  20. <!-- Last page -->
  21. <link rel="last" title="last page or most recent page" href="lastpage.html" />
  22.  
  23.  
  24. <meta name="keywords" content="" />
  25. <meta name="description" content="" />
  26.  
  27. </head>

Report this snippet 

You need to login to post a comment.