I've been attempting to implement CSS within my HTML document, but for some reason, it's not working. I even tried using an external style sheet, but that didn't work either. The goal is to create a green box that is 960px wide and 200px high at the top of the page, but nothing is happening.
<!DOCTYPE html>
<html>
<head>
<title>Xbox UK Home</title>
<meta name=“description” content=“Xbox is a gaming console created by Microsoft”/>
<meta name=“keywords” content=“Xbox, games, Microsoft, Xbox Live” />
<meta name=“robots” content=“nofollow” />
<style>
#header {
width: 960px;
background-color:#006400;
height: 200px;
}
</style>
</head>
<body>
<!—-Main Header—->
<header id=“header”> </header>
<!—-Second Header—->
<section> </section>
<!—-Main Image—->
<section> </section>
<!—-Box One —-!>
<Section> </Section>
<!—-Box Two —-!>
<Section> </Section>
<!—-Box Three —-!>
<Section> </Section>
<!—-Box Four —-!>
<Section> </Section>
<!—-Box Five —-!>
<Section> </Section>
<Footer></Footer>
</body>