-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfox.html
37 lines (36 loc) · 1.4 KB
/
fox.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fox News Generator</title>
<script src="fox-generator.js"></script>
<script src="helpers.js"></script>
<link rel="stylesheet" href="https://unpkg.com/mvp.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="alert.html">NFL Alert</a></li>
<li><a href="quote.html">NFL Image Quote</a></li>
<li><a href="team-quote.html">NFL Team Quote</a></li>
<li><a href="fox.html">Fox News</a></li>
<li><a href="colts-banner.html">Colts Banner</a></li>
</ul>
</div>
<div class="content">
<form id="fox-form">
Chevron Text: <input type="text" name="chevron-text" id="chevron-text">
Box Text: <input type="text" name="box-text" id="box-text">
<input type="file" name="box-image" id="box-image">
<input type="button" value="Generate" onclick="generate_foxnews()">
</form>
<!-- Alert Generator Canvas -->
<canvas id="fox-generator" height="720" width="1280"></canvas>
<p><button id="img-url">Download</button></p>
</div>
</body>
</html>