<!DOCTYPE html> 
<html> 
<head> 
    <title>Background Properties</title> 
    <style> 
      .d { 
            background-image: 
            url( 
'https://www.augusta.edu/mcg/expansion/northwest/images/panorama-lg.jpg'); 
            background-repeat: no-repeat; 
            background-origin: initial; 
        } 
    </style> 
</head> 
<body> 
    
    <div class="d" style="height: 1500px; width: 100%"></div> 
    
</body> 
</html>
