-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc.html
53 lines (39 loc) · 1.76 KB
/
calc.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
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles.css">
<title>Public Domain Calculator</title>
</head>
<body>
<main id="content-wrapper">
<h1 class="title">Music in the Public Domain</h1>
<p class="warning">* All fields are required</p>
<form>
<fieldset>
<label>What is the song title?</label><br>
<input type="text" placeholder="Enter song title here" id="songTitle" /><br><br>
<label>What year was the song released?</label><br>
<input type="number" placeholder="Enter four digit year" id="songYear" /><br><br>
<label>Is the artist still alive?</label><br>
<div class="form-group options">
<input type="checkbox" id="authorYes" name="alive" value='yes' /> Yes<br>
<input type="checkbox" id="authorNo" name="alive" value='no' /> No<br><br>
</div>
<label>If no, what year did the artist die?</label><br>
<input type="number" placeholder="Enter four digit year" id="authorDeath" /><br><br>
<div style="color: red;" id="empty"></div>
<button type="button" value="Check Public Domain Information" onclick="checkSong()">Tell Me About This Song</button>
<!-- onclick="checkForm() -->
<br>
<br>
<h3>Public Domain Information:</h3>
<h4 id="result"></h4>
</fieldset>
</form>
</main>
<script src="script.js"></script>
</body>
</html>