<!DOCTYPE html> <html lang="id"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tutorial CSS: background-position</title> <style> body { padding: 2em 3em; background-image: url("/images/css/background-image-1.jpg"); background-repeat: no-repeat; background-position: right top; } </style> </head> <body> <h2>Tutorial CSS Background: background-position</h2> </body> </html>