-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
24 lines (24 loc) · 733 Bytes
/
index.php
File metadata and controls
24 lines (24 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
<?php echo file_get_contents("3p.css"); ?>
</style>
</head>
<body>
<div id='_3p-right' class="_3p-right-arrow">»</div>
<div id="_3p-left" class="_3p-left-arrow">«</div>
<div id="_3p-header">this is the header</div>
<div id="body">
<div id="_3p-left-body" class="_3p-div">1</div>
<div id="_3p-center-body" class="_3p-div">2</div>
<div id="_3p-right-body" class="_3p-div">3</div>
</div>
<div id="_3p-footer">This is the footer</div>
<script>
<?php
echo file_get_contents("3p-min.js");
?>
</script>
</body>
</html>