Hacker News new | ask | show | jobs
by Stormbringer 5572 days ago
Here's the source:

  <!DOCTYPE html> 
  <html lang="en"> 
  <head> 
  <meta charset="utf-8">
  <title>Code Standards | Isobar</title> 
  <link rel="stylesheet" href="assets/master.css" /> 
  </head> 
  <body> 



  <!--  
                _^_
               / _)         
        .-^^^-/ /          we like dinosaurs as much as you  do.
    __/       /              
    <__.|_|-|_|             
    
    -->

I see a couple of problems. First up, they're not indenting. The validator is spitting the dummy because of two things, the first is the spurious whitespace before the doctype tag, the second is the title (which it thinks is missing), but the real problem is with the meta tag which isn't properly closed.

But hey, free dinosaur. With hat.

1 comments

Using html5 (or 4) the meta tag doesn't need to be closed. Personally I prefer to do close or self-close tags anyway as I entered the game with xhtml, whose syntax I still prefer.