-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfetch_Or_Insert.html
More file actions
32 lines (26 loc) · 1009 Bytes
/
fetch_Or_Insert.html
File metadata and controls
32 lines (26 loc) · 1009 Bytes
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
<html>
<head>
<style>
h1 {color:white; ;}
p {color: white;}
.kuk {
/* The image used */
background-image: url("Lock-Screen-Background-HD-Wallpaper-105.jpg");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
text-align: center;}
</style>
<br>
<h1>Click any one button</h1>
</head>
<body class="kuk">
<button onclick="location.href='fetch.html'" >Fetch Details</button>
<button onclick="location.href='insert.html'">Insert New Record</button>
<button onclick="location.href= 'edit.html'">Edit or Change record data</button>
<button onclick="location.href= 'acctset.html'">Account Settings</button>
</body>
</html>