<!DOCTYPE html>

<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    
    <title></title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        body{

            width: 100%;
            height: 100%;




        }
        .top{
            height: 50%;
            background: url("bg-top.jpg") repeat-x 100% 100%;
            width: 100%;
            position: absolute;
            top: 0;
            z-index: 99;
        }
        .img{
            width: 584px;
           text-align: center;
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -174px;
            margin-left: -282px;
            z-index: 100;
        }
        .bottom{
            height: 273px;
            background: url("bg-bottom.jpg") repeat-x 100% bottom;
            width: 100%;
            bottom: 0;
            position: absolute;
            z-index: 99;
        }
    </style>
</head>
<body>
<div class="body">
    <div class="top"></div>
    <div class="img"><img src="title.png"></div>
    <div class="bottom"></div>
</div>

</body></html>