-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
30 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
<!DOCTYPE html>
<html>
<head>
<title>Banner Generator | Mozilla QA Bangladesh</title>
<link rel="stylesheet" type="text/css" href="styles/theme.css" />
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
</head>
<body>
<h1>Banner Generator</h1>
<span class="note"> Fill up the informations and download your banner: </span> <br/><br/>
<div class="form">
<input type="text" id="banner_heading" placeholder="Banner Headline" />
<select id="channel_name">
<option selected="true" disabled="disabled">Select Channel</option>
<option value=0>Release</option>
<option value=1>Beta</option>
<option value=2>Nightly</option>
<option value=3>Developer</option>
</select>
<input type="button" id="preview" value="Apply"/>
<a id="download"><button type="button">Download</button></a>
</div>
<canvas id="banner_background" height="350px" width="900px"> </canvas>
<canvas id="banner" height="350px" width="900px"> </canvas>
<canvas id="fxlogo" height="350px" width="900px"> </canvas>
<canvas id="mozqabdlogo" height="350px" width="900px"> </canvas>
<script src="magic/generator.js"> </script>
</body>
</html>