The first error I notice is the closing </div> tag... did you have an opening <div> before that?
Second, <hr /> is a single tag... somewhat like <input> and <link>, it doesn't open and close, but rather is a single entity, not a container, and so instead of <hr></hr>, it's <hr />.
It looks...