-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (26 loc) · 1014 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Get Badge</title>
<link rel="stylesheet" href="style.css"></link>
</head>
<body>
<header>
<img src="img/logo.png" alt="amit's logo">
<h4>Get your badge</h4>
<h1><a href="www.google.com" target="_blank" rel="noopener noreferrer">Build Something New</a></h1>
</header>
<main>
<label for="name">Type Your Name</label>
<input placeholder="Amit Kumar" type="text" name="Name" id="name" autocomplete="name">
<button id="submit">Get Badge</button>
</main>
<iframe src="" id="mypdf" height="400px" width="400px" frameborder="0"></iframe>
<script src="https://unpkg.com/pdf-lib@1.4.0"></script>
<script src="https://unpkg.com/@pdf-lib/fontkit@0.0.4"></script>
<script src="index.js"></script>
<script src="FileSaver.js"></script>
</body>
</html>