1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php include('_init.php'); ?> <!DOCTYPE html> <html lang="en"> <head> <?php include('_head.php'); ?> <link href="css/style_k.css" type="text/css" rel="stylesheet"> <style> .navbar-default { background-color: #000000 !important; border-color: #e7e7e7 !important;; } </style> </head>
<body> <?php include('_header.php') ?>
<img src="http://www.theharborrockwall.com/wp-content/uploads/2015/04/coming-soon-dots.jpg" style="width: 100%;padding-top: 30px;"> <?php include('_dialog.php') ?>
<? include('_footer.php') ?>
</body> </html>
|