-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
34 lines (28 loc) · 822 Bytes
/
index1.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
<!DOCTYPE html>
<html lang="en">
<style>
body
{
background-image: ('dk.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
</style>
<body background= "dk.jpg">
<form action="upload.php" method="post" enctype="multipart/form-data">
<div align="center" style="border:3px solid blue" >
<font color= "solid white"> Select image to upload:
</font>
<input type="file" name="image"/>
<input type="submit" name="submit" value="UPLOAD"/>
</form>
<form action="" method="post" enctype="multipart/form-data">
<font color="solid white"> View uploded files
</font>
<!-- <input type="file" name="image"/>-->
<input type="submit" name="submit" value="View"/>
</form>
</div>
</body>
</html>