In XHTML, which is strictly associated with XML rules, each open tag must be nested and closed properly, tags such as <area />,<base />,<basefont />,<br />,<hr />,<input />,<img />,<link />,<meta /> , are only useful with attributes, so you need to close them with "/"> "instead of"> "In XML, the way you open and close a tag in to the same tag, this is what your html should look like:
<!doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title>Rode kruis Vrijwilligers applicatie</title> <link href="/css/blitzer/jquery-ui-1.8.11.custom.css" media="screen" rel="stylesheet" type="text/css" > </head> <body> Test. </body> </html>
source share