-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.47 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
<!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">
<link rel="stylesheet" href="assets/css/styles.css">
<script src="assets/js/main.js" defer></script>
<title>Email that Photo</title>
</head>
<body>
<div class="wrapper">
<h1>Email Me TV!</h1>
<p>Enter your email below and click "Send Me That Image" and we will email you the image in the TV.</p>
<p>Don't like the image? Hit the "Change Channel" button to see another random image.</p>
<form id="form">
<input type="text" placeholder="Type Email Address Here" id="email">
<input type="button" id="button" value="Send Me That Image">
<span>Or</span>
<input type="button" id="another" value="Change Channel">
</form>
<div id="tv-wrapper">
<img id="tv" src="assets/img/TV-old.png" alt="Television style viewer for viewing images">
<div id="viewer"></div>
<div id="attribution-container">
<div id="attribution"></div>
</div>
<div id="tv-message-container">
<span id="tv-message"></span>
</div>
<span id="unsplash-attribution">All images sourced from <a href="https://unsplash.com/">Unsplash</a></span>
</div>
<div id="showcase"></div>
</div>
</body>
</html>