On this page if you click CTRL+U, you’ll be able to see the CSS and the HTML… I’m trying to create a page that doesn’t conform to my usual style sheet so I’m trying embed the CSS in the HTML, and for some reason it’s not working.
Relevant HTML code:
<HEAD>
<STYLE type="text/css">
subscribe{
font-family: helvetica, sans-serif, Arial;
margin:auto;
}
</STYLE>
</HEAD>
You’re missing a . in front of the class name subscribe.
It should be this:
.subscribe{ font-family: helvetica, sans-serif, Arial; margin:auto; }