-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfetch.html
More file actions
52 lines (33 loc) · 1.43 KB
/
fetch.html
File metadata and controls
52 lines (33 loc) · 1.43 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
<!DOCTYPE HTML>
<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><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<h1>Fetch Details</h1>
</head>
<body class="kuk">
<form method="post" action="fetch.php">
<select id="drop" name="dro">
<option name="hotmail" value="hotmail">Hotmail</options>
<option name="github" value="github">Github</options>
<option name="instagram" value="instagram">Instagram</options>
<option name="twitter" value="twitter">Twitter</options>
<option name="facebook" value="facebook">Facebook</options>
</select>
<button type="submit" name="fet">Fetch</button>
</form>
</body>
</html>