Trying to set background image of page with following but it will not display. Please help. Thanks.
<!DOCTYPE HTML>
<HTML>
<head>
<title>test</title>
<link rel="stylesheet" type="text/css" href="styles/styles.css" />
</head>
<body>
</body>
</HTML>
html {
height: 100%;
background: url(imgs/1.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
margin-top: 0;
height: 100%;
}