-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (40 loc) · 1.28 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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/futura-font@1.0.0/styles.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mobiz-Advanced-Quick-Response-Code-Generator</title>
<style>
* {
font-family: FuturaBT-Medium;
margin: 0;
padding: 0;
}
div {
background: #7D4040;
color: white;
padding: 25px;
margin-bottom: 25px;
}
input {
padding: 10px;
width: 45vw;
}
img {
width: 45vw;
}
</style>
</head>
<body>
<center>
<div><label><b>Mobiz-Advanced-Quick-Response-Code-Generator</b>
<br><br></label>
<input type="text" ng-model="yourName" placeholder="Enter a text or a URL here">
</div>
<a href="https://api.qrserver.com/v1/create-qr-code/?size=250x250&data={{yourName}}" download>
<img src="https://api.qrserver.com/v1/create-qr-code/?size=250x250&data={{yourName}}">
</a>
</center>
</body>
</html>