I have created a website with a gif background and I want to redirect to another site (like softlaunch) after clicking anywhere on the screen.
This is my HTML and CSS:
body {
background: url(main.gif) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-color: #000000;
width: 100%;
height: 100%;
}
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/png" href="fav.png" />
<link href="style.css" rel="stylesheet" type="text/css">
<title>@nosleep</title>
</head>
<body>
</body>
</html>