-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (41 loc) · 1.63 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
38
39
40
41
42
43
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="colorlib.com">
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet" />
<link href="static/css/main.css" rel="stylesheet" />
</head>
<body>
<center><img src="static/images/billboard_logo.png" alt="logo"></center>
<div class="s01">
<form method = "POST">
<fieldset>
</fieldset>
<div class="inner-form">
<div class="input-field first-wrap">
<input id="song" type="text" placeholder="Song" name="song"/>
</div>
<div class="input-field second-wrap">
<input id="artist" type="text" placeholder="Artist" name ="artist"/>
</div>
<h4>Has the artist had a billboard hit before this?</h4>
<div id="radios">
<label for="input1"></label>
<input id="input1" name="options" type="radio" value="Yes"></input>
<label for="input2"></label>
<input id="input2" name="options" type="radio" value="No"></input>
<label for="input3"></label>
<input id="input3" name="options" type="radio" value="Maybe"></input>
<span id="slider"></span>
</div>
<div class="input-field third-wrap">
<button class="btn-search" type="submit">Search</button>
</div>
</div>
</form>
</div>
</body>
<!-- This templates was made by Colorlib (https://colorlib.com) -->
</html>