-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdf.html
83 lines (51 loc) · 2.68 KB
/
pdf.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
81
82
83
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<title>Word to PDF Converter</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<!-- Here used your icone or logo -->
<link rel="icon" href="imgvidoc.ico" type="image/x-icon">
<link rel="shortcut icon" href="imgvidoc.ico" type="image/x-icon">
</head>
<body>
<!-- Header Top -->
<header class="text-gray-600 body-font">
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
<a href=" index.html" <span class="ml-3 text-xl"><p style="color:rgba(4, 45, 250, 0.959)"> <b> Imgvidoc</b></p></span>
</a>
<!-- all link enter here-->
<nav href=" http://www.imgvidoc.website " class="md:ml-auto md:mr-auto flex flex-wrap items-center text-base justify-center">
<a href=" index.html" class="mr-5 hover:text-gray-900">Home</a>
<a href="image_resizer.html" class="mr-5 hover:text-gray-900">Image</a>
<a href="random-image.html" class="mr-5 hover:text-gray-900">Random Image</a>
<a href="youtube_video_downloader.html" class="mr-5 hover:text-gray-900">Youtube Video Downloader</a>
<!-- Here link of home page -->
<a href="contact.html" class="mr-5 hover:text-gray-900">Contact</a>
</nav>
<a href="whatsapp://send?text= Image , PDF , random image generator and Youtube video download .Tools https://www.imgvidoc.website" class="inline-flex items-center bg-gray-100 border-0 py-1 px-3 focus:outline-none hover:bg-gray-200 rounded text-base mt-4 md:mt-0">Share
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 ml-1" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</header>
<section class="text-gray-600 body-font">
<div class="container mx-auto flex px-1 py-1 items-center justify-center flex-col">
<div class="text-center lg:w-2/3 w-full">
<div class="container">
<h1>Word to PDF Converter</h1>
<form id="convert-form">
<input type="file" id="file-input" accept=".doc,.docx">
<button type="submit" , class="ml-3 inline-flex text-white bg-indigo-500 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-700 rounded text-lg"> Convert to PDF </button>
</form>
<div id="result"></div>
</div>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>