CINXE.COM
Coco Joes Barr And Grill
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Coco Joes Barr And Grill</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } html, body { height: 100%; width: 100%; } .full-screen-image { width: 100%; height: 100%; background-image: url('koko.png'); /* Picture */ background-size: contain; /* Screen Contain */ background-position: center; background-repeat: no-repeat; /* Repeat */ background-color: black; /* Ground */ } </style> </head> <body> <div class="full-screen-image"></div> </body> </html>