I’m developing a small html page on Google Chrome, and I’ writing it in XHTML. The beginning the of the document looks like this:
<?xml version="1.0" encoding="utf8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"DTD/xhtml1-strict.dtd">
<html xml:lang="en">
<head>
<style href="tbx2html.css" type="text/css"/>
The style tag should be self-closing; however, it doesn’t close and the rest of the page is placed inside of it, so that nothing displays. Any suggestions on how to fix this problem?
Unless Chrome has added this feature against the standard, that is not how you reference style sheets. Use the
linktag: