-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (33 loc) · 1.12 KB
/
index.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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ADITI DOCX</title>
</head>
<style>
button{
padding: 20px 10px;
font-size: 25px;
cursor: pointer;
color: grey;
border: 2px solid #242424;
outline: none;
transition: .3s all ease;
}
button:hover{
background: grey;
color: #fff;
}
</style>
<body>
<button id="btn">DOWNLOAD DOCX!!</button>
<!-- Libraries -->
<!-- <script src="https://unpkg.com/docx@5.0.2/build/index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/1.3.8/FileSaver.js"></script> -->
<!-- <script src="bundle.js"></script> -->
<!-- <script src="https://requirejs.org/docs/release/2.3.5/minified/require.js"></script> -->
<!-- Libraries -->
<script src="./index.js"></script>
</body>
</html>