-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (42 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>PWA Logo Printer</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="fonts/fonts.css">
<link href="css/style.css" rel="stylesheet">
<script src="js/pwrinter.js"></script>
<script src="swreg.js"></script>
<meta name="theme-color" content="silver">
<link rel="icon" href="images/pwinter512.png">
<link rel="manifest" href="manifest.json">
</head>
<body>
<div id="content">
<header>
<img id="logo" src="images/pwinterlogo.svg" alt="PWA Logo Pwinter">
</header>
<p>Print your PWA logo in 3 easy steps</p>
<div id="logoSteps">
<div>
<h2>1. Choose font tone (dark/light):</h2>
<radiogroup>
<label><input id="radDark" type="radio" name="textColor" value="dark (#3D3D3D)">Dark Font</label>
<label><input id="radLight" type="radio" name="textColor" value="light (#FFF)">Light Font</label>
</radiogroup>
</div>
<div>
<h2>2. Select color to emphasize the "W" (web):</h2>
<input id="colorPicker" type="color" value="#706CF5">
</div>
<div>
<h2>3. Preview / Download:</h2>
<svg id='preview' width="150" height="150"></svg>
<br>
<a href="#" id="downloadLink" download="image.svg">download logo</a>
</div>
<div>
</div>
</body>
</html>