-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (72 loc) · 1.81 KB
/
index.html
File metadata and controls
81 lines (72 loc) · 1.81 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Converter</title>
<style>
html {
background-color: #C78F6B;
text-align: center;
padding: 200px;
}
input[type=text] {
width: 350px;
height: 35px;
text-align: center;
border-radius: 10px;
}
input[type=submit] {
width: 350px;
height: 35px;
text-align: center;
background: #B97346;
border-radius: 10px;
border-color: black;
border-style: dashed;
border-width: 2px;
font-family: "Calibri Light";
font-weight: bold;
font-size: 100%;
cursor: pointer;
}
input[type=file] {
background-color: #B97346;
border-radius: 10px;
padding-left: 30px;
padding-right: 30px;
padding-bottom: 25px;
margin: 15px;
border-style: dashed;
border-width: 2px;
font-family: "Calibri Light";
font-size: 100%;
}
input[type=file]::-webkit-file-upload-button {
content: "Choose";
cursor: pointer;
margin-top: 25px;
display: inline-block;
padding: 6px;
padding-right: 29px;
padding-left: 29px;
font-family: "Calibri Light";
font-size: 100%;
font-style: italic;
border-radius: 10px;
border-width: 1px;
border-color: black;
border-style: dashed;
background-color: #C78F6B;
}
</style>
</head>
<body>
<form action="main.php" method="post" enctype="multipart/form-data">
<h1>This is DOCX to PDF Converter By Gulshan Kumar</h1>
<h3>You can Upload Your MicroSoft Word File And Simply Download it into PDF </h3>
<input type="file" class="file" accept=".docx" name="file" required>
<br><br>
<input type="submit" value="D o w n l o a d T h e P D F F i l e">
</form>
</body>
</html>