-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.html
84 lines (72 loc) · 1.84 KB
/
default.html
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>DEFAULT PAGE</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta name="Keywords" content="CROGRAM, DEFAULT PAGE" />
<meta name="Description" content="CROGRAM DEFAULT PAGE" />
<style>
body {
margin: 0 auto;
width: auto;
}
.header,
.nav,
.content {
padding: 10px;
}
.container {
min-width: 666px;
margin: 10px auto;
width: 60%;
max-width: 800px;
}
.title {
width: 200px;
height: 28px;
}
.content {
background-color: #eee;
}
.nav,
.footer {
color: #fff;
background-color: #6fb9f5;
}
.footer {
height: 30px;
line-height: 30px;
padding-left: 10px;
padding-right: 10px;
}
.footer a {
color: #fff;
}
.right {
float: right;
}
.left {
float: left;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h2 class="title">CROGRAM</h2>
</div>
<div class="nav">WELCOME TO CROGRAM !</div>
<div class="content">
<p>-----------------------------</p>
<p>THIS IS THE DEFAULT INDEX FILE</p>
<p>-----------------------------</p>
</div>
<div class="footer">
<div class="left">POWERED BY
<a href="https://crogram.com" target="_blank">CROGRAM</a>
</div>
</div>
</div>
</body>
</html>