-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSplash.php
More file actions
178 lines (129 loc) · 3.8 KB
/
Splash.php
File metadata and controls
178 lines (129 loc) · 3.8 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?php
include_once("head.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>Fruit Road</title>
<script>
var adminStatus = false;
function clockTick(){
var currentTime = new Date ( );
var currentHours = currentTime.getHours ( );
var currentMinutes = currentTime.getMinutes ( );
var currentSeconds = currentTime.getSeconds ( );
if(currentHours > 12){currentHours = currentHours - 12};
if(currentHours == 0){currentHours = 12};
if(currentMinutes < 10){currentMinutes = '0'+currentMinutes};
if(currentSeconds < 10){currentSeconds = '0'+currentSeconds};
var displayTime = currentHours+':'+currentMinutes+':'+currentSeconds;
var element = document.getElementById('clock');
element.innerText = displayTime;
}
function AdminCheck(){
if (adminStatus == false){
admin.innerText =" ";
} ;
}
</script>
</head>
<style>
#header{
color: #9B7100;
font-size: 3em;
}
body {
font-family: 'Verdana';
text-align: center;
background-color: #FAB700;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
display: inline;
}
a{
font-weight: bold;
font-size: 2.5em;
color: #C79200;
margin: .5em;
}
p{
font-size: 3.5em;
color: #C79200;
margin: .5em;
}
#title{
margin: 5px;
font-size:2em;
color: #C79200;
}
#image img,iframe{
padding:3px;
background-color: #C79200;
}
#clock{
margin-top: 60px;
font-size: 2em;
clear:both;
background-color: #FFD050;
color: #C79200;
margin-left:39%;
margin-right:39%
}
<<<<<<< HEAD
#navigation{
=======
#navigation{
width: 100%;
height: 75px;
text-align: center;
>>>>>>> 90800fd3a79770fe36fdb93a75076e502981adf1
background: #FAB700; /* old browsers */
background: -moz-linear-gradient(top, #C79200 0%, #FAB700 100%); /* firefox */
border-top: 1px solid #FAB700;
border-bottom: 1px solid #FAB700;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#C79200), color-stop(100%,#FAB700)); /* webkit */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#C79200', endColorstr='#FAB700',GradientType=0 ); /* ie */
<<<<<<< HEAD
}
=======
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
white-space: nowrap;
}
>>>>>>> 90800fd3a79770fe36fdb93a75076e502981adf1
</style>
<body onload="clockTick(); setInterval(function(){clockTick();time() }, 1000 )">
<div>
<image src="http://img3.wikia.nocookie.net/__cb20071019155930/uncyclopedia/images/7/7b/Dancing_banana.gif" ></image>
<p id ="title"> FRUITY ROAD</p>
</div>
<p id='header'> FRUITY ROAD BABAYY </p>
<p>
WELCOME TO FRUIT ROAD YOUR PREMIER ONLINE FRUIT WHOLESALER!
WE HAVE ALL SORTS OF RARE AND TASTY FRUITS!
</p>
<p>
APPLES!
<image src="http://www.vegkitchen.com/wp-content/uploads/2013/04/Apples-in-a-basket.jpg" ></image>
</p>
<p>
DRAGONFRUIT!
<image src="http://0.tqn.com/y/thaifood/1/S/e/D/dragonfruit1_edited-1.jpg" ></image>
</p>
<p>
GRAPES!
<image id="image" src="http://images.santu.com/2876/grapes_13621922962518.jpg" ></image>
</p>
<div id="clock" >0:00:00</div>
<div style= "background-color:#FFD050; color:#FFD050; font-size:.2em">i</div>
<div style= "background-color:#FFD050; clear:both; color: #C79200; font-size: 2em;text-align:center; margin-left:35%; margin-right:35%; ">
© Fruit Road - 2014</div>
<div style= "background-color:#FFD050; color:#FFD050; font-size:.2em">i</div>
</body>
</html>