Good afternoon,
I want to a have a backround image on my HTML file but having issues in doing this.
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-image: src('img_BD1.jpg');
background-repeat: no-repeat;
}
</style>
</head>
<body>
<img src="./img/BD1.jpg"/>
<a href="student.php">Student data</a>
</body>
</html>
This is my coding and I know the <img src=2./img/BD1.jpg"/> works but only as a small image and not the whole backround.
Thanks Adam