Hello I am trying to fade in the background image into my website by using all css if possible. When users visit the home page I would like for the image to fade in. I am having issues doing so unless I have to add jquery or javascript to do so. Here is my code:
<!doctype html>
<html>
<head>
<title>Paradox Entertainment</title>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style type="text/css">
body {
margin:0;
font-family:arial,helvetica,sans-serif;
background-image:url("images/2_petski.jpg");
background-position: center;
background-repeat: no-repeat;
background-color:#000000;
color: #ffffff;
padding: 350px;
}
ul {
list-style: none
}
</style>
</head>
<body>
</body>
</html>
Thank you in advance if I can get any sort of resource or code help.