أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
we can make background image using CSS and as well as in html. in html we write in-line style and define the background in body tag. and in CSS file we also define background image in body CSS.
IN HTML <body style="background:url('../images/.jpg')"> </body>or <body background="../images/.jpg">
IN CSS body{
background: background: url('../images/.jpg');
}