forked from shehrozasghar/singlepage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Moshoo-04
100 lines (80 loc) · 2.32 KB
/
Moshoo-04
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
<!-- WEBSITE HEADER -->
<html>
<head>
<link type="text/css" rel="stylesheet" href="bootstrap/css/bootstrap.css">
<script type="text/javascript" src="bootstrap/js/bootstrap.js"></script>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: Sienna;
}
li {
float: left;
margin-left:100px;
}
li a {
display: block;
color: SandyBrown;
text-align: center;
padding: 14px 15px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color:cornflowerblue;
}
.active {
color: Salmon;
}
input[type=text], input[type=number],select,input[type=email],input[type=password],input[type=tel] {
width: 170%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type=date] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.display {
border-radius: 5px;
background-color: #ff8a00;
padding: 20px;
padding-left:50px;
width:40%;
margin-left:400px;
}
input[type=submit]{
width: 100%;
background-color: #555555;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
.btn1 {width:30%;}
.heading {text-align:center;color:royalblue;margin-top:40px;margin-left:-100px;}
</style>
</head>
<body style="background-image:url('logo.jpg');background-repeat: no-repeat;background-size: 300px 175px">
<h1 class="text text-center text-capitalize text-primary" style="font-size:60px;margin-top:30px;color:OliveDrab;"> Moshoo's Webiste Header</h1>
<div style="margin-top:100px;font-family: cursive">
<ul>
<b><li><a class="active" href="index.php">Home</a></li>
<b><li> <a href="register.php" >Register</a></li></b>
<b><li> <a href="login.php" >Customer Login</a></li></b>
<b><li> <a href="admin_login.php" >Admin Login</a></li></b>
</ul>
</div>