-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Certificate Generator using javascript</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Archivo+Narrow&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="favicon.png"/>
</head>
<body>
<header>
<div class="heading_text">
<h1>Create Certificates for Free in Minutes</h1>
<h2>Make unique certificates in minutes. No design skills needed.</h2>
</div>
</header>
<main>
<div>
<input type="text" name="Name" class="question" id="name" required autocomplete="off" />
<label for="name"><span>What's your name?</span></label>
<input type="submit" id="submitBtn" value="Get Certificate"/>
</div>
</main>
<script src="https://unpkg.com/pdf-lib/dist/pdf-lib.min.js"></script>
<script src="https://unpkg.com/@pdf-lib/[email protected]"></script>
<script src="FileSaver.js"></script>
<script src="index.js"></script>
</body>
</html>