-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (30 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>500LRB's qr code generator</title>
<link rel="icon" href="images/linus.png" type="image/x-icon" />
<link href="styles/style.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="qrbox">
<div class="qrheader">
<h2 class="headd">500LRB's qr code generator</h2>
</div>
<div class="image">
<img class="woah" src="" alt="">
</div>
<div class="qrcode">
<input name="bro" type="text" placeholder="enter text to generate" class="texte" size="60"/>
</div>
<input type="button" class="submitter submitters" value="generate">
</div>
</div>
<script src="scripts/thing.js"></script>
</body>
</html>