-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
40 lines (34 loc) · 1.32 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<title>Song Name Generator - version 1.1</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<meta name="description" content="Generate Song Names" />
<meta name="keywords" content="song, names" />
<link type="text/css" href="css/song-name-generator.css" rel="stylesheet">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="http://malsup.github.com/jquery.form.js"></script>
<script type="text/javascript" src="js/song-name-generator.js"></script>
</head>
<body>
<div class="song-name-container">
<h1>Song Name Generator</h1>
<p id="new-song-name">Need a cool name for your song?</p>
<form id="song-name-form" name="song-name-form" method="post" action="song-name-generator.php">
<div class="input">
<div class="blockinput">
<input type="text" name="word" id="word" placeholder="Enter Keyword (Optional)">
</div>
</div>
<div class="size">
<select name="mode">
<option name="mode" value="3">Small</option>
<option name="mode" value="2">Medium</option>
<option name="mode" value="1">Large</option>
</select>
</div>
<button>Create Song Name</button>
</form>
</div>
</body>
</html>