-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathheader.inc.php
49 lines (42 loc) · 895 Bytes
/
header.inc.php
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>CS4G Network Simulator</title>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('[type="button"]').button();
$('[type="submit"]').button();
});
</script>
<link href="css/jquery-ui.min.css" rel="stylesheet">
<style type="text/css">
* { font-family:Arial, Helvetica, sans-serif; }
html {
margin:0;
min-height:100%;
}
body {
background:#DDD;
background:linear-gradient(#DDD, #FFF);
margin:0;
min-height:100%;
}
#content {
background-color:#FFF;
width:800px;
min-height:90%;
margin-left:auto;
margin-right:auto;
padding:30px;
padding-bottom:0;
border-left:solid 1px #EEE;
border-right:solid 1px #EEE;
}
</style>
</head>
<body>
<div id="content">
<h1>Netsim</h1>