favicon plaatsen in url DWCS4

Status
Niet open voor verdere reacties.
Hoi van.beurten,
Naar je template gaan, bezichtigen in code-weergave, en dan in het niet-editable gedeelte van de <head> zetten:
HTML:
<link rel="shortcut icon" href="http://www.jedomeinnaam.nl/opbergmapje/favicon.ico">
Werkt dat?

Met vriendelijke groet,
CSShunter
 
is dit na xhtml" ??

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>home</title>
 
Yep. :)
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>home</title>
<link rel="shortcut icon" href="http://www.jedomeinnaam.nl/opbergmapje/favicon.ico" />
... enz.
</head>
Beter is te beginnen met:
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="nl" xml:lang="nl">
<head>
... enz.
waarmee de (hoofd-)taal van de tekst wordt aangegeven (de lang moet er hier dubbel in staan volgens de xhtml-specificatie: zowel met de html-notatie als de xhtml-notatie).
  • "Language information is useful for things such as authoring tools, translation tools, accessibility, font selection, page rendering, search, and scripting.
    These applications can't work, however, if the information about the language of the text is not available. Language information should therefore be specified for the page as a whole, and wherever language changes within the page."
  • www.w3.org/TR/i18n-html-tech-lang/
En nog beter is het Strict Doctype (zie o.a. hier):
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="nl" xml:lang="nl">
<head>
... enz.
Met vriendelijke groet,
CSShunter
 
Laatst bewerkt:
Status
Niet open voor verdere reacties.
Terug
Bovenaan Onderaan