GilbertClaus commited on
Commit
46edd03
·
1 Parent(s): 0527828

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -0
app.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Penjualan</title>
5
+ <style>
6
+ body {
7
+ background-image: url('https://images.wallpaperscraft.ru/image/single/vodorosli_rastenie_makro_106345_1920x1080.jpg');
8
+ background-size: cover;
9
+ }
10
+ .container {
11
+ max-width: 800px;
12
+ margin: 0 auto;
13
+ text-align: center;
14
+ color: white;
15
+ }
16
+ </style>
17
+ </head>
18
+ <body>
19
+ <div class="container">
20
+ <h1>Penjualan</h1>
21
+ <img src="https://via.placeholder.com/300x300" alt="Gambar Produk">
22
+ <p>Deskripsi produk di sini.</p>
23
+ <button>Beli Sekarang</button>
24
+ </div>
25
+ </body>
26
+ </html>