-
Notifications
You must be signed in to change notification settings - Fork 0
/
customer.html
80 lines (78 loc) · 1.85 KB
/
customer.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
<!DOCTYPE html>
<html>
<head>
<title>
Customer
</title>
</head>
<body>
<link href='https://fonts.googleapis.com/css?family=Coiny' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Candal' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Jockey One' rel='stylesheet'>
<h1>
<center>
<h1 style="font-size: 40" "font-family: Candal"><font style="border: 14px groove floralwhite;" color=black ><u>CUSTOMER</font></h1>
<br>
</center>
<style> body{ background: url("https://www.omnikick.com/wp-content/uploads/2017/02/Customer-Acquisition-Strategy.gif") no-repeat;
background-size:cover;
font-family:"Verdana";
text-color:white;
}
</style>
<b>
<font style="font-family: Coiny " font color="white" size="10">
SELECT ANY ONE OPTION FROM BELOW:</font>
</b>
<style>
ul{
margin:3pc;
padding:0.1px;
list-style:none;
}
ul li{
float:initial;
width:450px;
height:80px;
background-color:mediumslateblue;
opacity:.8;
line-height:40px;
text-align:center;
font-size:35px;
margin-bottom: 16px;
}
ul li a{
text-decoration:underline;
text-align: center;
font-family: Jockey One;
font-weight: bold;
font-size: 6;
color:white;
display:block;
}
ul li a:hover{
background-color: white;
color: black;
background-size: contain;
}
ul li ul li{
display:none;
}
ul li:hover ul li{
display:block;
}
</style><br>
<ul>
<li><a href="cinsert.html">INSERT VALUES IN TO THE CUSTOMER</a></li>
<li><a href="csearch.php">SEARCH VALUES FROM THE
CUSTOMER</a></li>
<li><a href="cdisplay.php">DISPLAY CONTENTS FROM THE
CUSTOMER TABLE</a></li>
<li><a href="cstored.php">STORED PROCEDURE OF THE
CUSTOMER</a></li>
<li><a href="cdelete.php">DELETE VALUES FROM THE
CUSTOMER</a></li>
</h1>
<p style="font-family: arial"><a href="index.html"><font style="color:green">GO BACK</font></a></p>
</body>
</html>