Reputation: 373
I'm currently designing a Windows 8 App and I'm wondering how to draw a background on the main page, right after the splash screen. I'm using JavaScript to create this app, and I have not found any tutorials or help for just drawing/displaying a simple background image. I am very new to web-based programming languages so if you could provide a tutorial, I would really appreciate it.
Upvotes: 2
Views: 2599
Reputation: 5633
<body style="background-image: url('/images/ff-background.jpg');">
inside of default.html or you can use css to the body tag.
Upvotes: 3