-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogos.php
More file actions
129 lines (126 loc) · 3.52 KB
/
logos.php
File metadata and controls
129 lines (126 loc) · 3.52 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
<!--This page is coded by Mohammed Zahid Wadiwale and is intellectual property of Zahid Servers-->
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<style>
.headerz{
width:100%;
background-color:#E6E6FA;
}
body{
margin:0px;
padding:0px;
}
.logo{
color:#663399;
font-size:25px;
font-family:verdana;
text-align:left;
margin-top:5px;
float:left;
margin:0px;
line-height:50px;
padding-left:9px;
}
/* unvisited link */
.logoscj:link {
color:#663399;
font-size:25px;
font-family:verdana;
text-align:left;
margin-top:5px;
float:left;
margin:0px;
line-height:50px;
padding-left:9px;
text-decoration:none;
}
/* visited link */
.logoscj:visited {
color:#663399;
font-size:25px;
font-family:verdana;
text-align:left;
margin-top:5px;
float:left;
margin:0px;
line-height:50px;
padding-left:9px;
text-decoration:none;
}
/* mouse over link */
.logoscj:hover {
color:#845BAD;
font-size:25px;
font-family:verdana;
text-align:left;
margin-top:5px;
float:left;
margin:0px;
line-height:50px;
padding-left:9px;
text-decoration:none;
}
/* selected link */
.logoscj:active {
color:#663399;
font-size:25px;
font-family:verdana;
text-align:left;
margin-top:5px;
float:left;
margin:0px;
line-height:50px;
padding-left:9px;
text-decoration:none;
}
.nonetitle:hover{
color:#845BAD;
text-align:left;
margin-top:5px;
float:left;
margin:0px;
}
input[type=text]{
width:70%;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
background-color: white;
background-image: url('./searchicon.png');
background-position: 10px 10px;
background-repeat: no-repeat;
padding: 12px 20px 12px 40px;}
input[type=submit]{
width:120px;
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 6px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
input[type=submit]:hover{
background-color: green;
font-weight:bold;
text-shadow:8px 8px 12px;
}
</style>
</head>
<body>
<div class="headerz">
<header>
<div style="background-color:red;color:yellow;font-size: 15px;font-weight: bold;">
<marquee width="120%" direction="left" height="15px" scrollamount="10" >Announcements:<?php include './marquee/marquee.txt';?></marquee>
</div><br>
<h5 class='nonetitle' style='color:#663399;padding-bottom:5px;text-align:left;margin-top:5px;float:left;margin:0px;' ><a href='./' style='color:purple;text-decoration:none'><?php include 'sitetitle.php'?>-Distant Learning</a></br></h5>
<h1 class="logo"><a href="./" class="logoscj"><?php include 'sitetitle.php'?>-Distant Learning</a></h1>
<form action="./course/" style="float:right;display:inline-block;line-height:52px;padding-right:14px; width:30%;">
<input class='search' type="text" name="k" placeholder="search.." autocomplete="off"><input class='search' type="submit" style="width:25%;background-color: #4CAF50;border: none;color: white;padding: 15px 6px;text-decoration: none;margin: 4px 2px;cursor: pointer;" value="Search" >
</form>
</header>
</div>
</body>