Created
February 17, 2015 01:43
-
-
Save iamdtang/acdc52722fc8603f960b to your computer and use it in GitHub Desktop.
html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Add Song</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<form> | |
<div class="form-group"> | |
<label>Title</label> | |
<input name="title" class="form-control"> | |
</div> | |
<div class="form-group"> | |
<label>Artist</label> | |
<select class="form-control"> | |
</select> | |
</div> | |
<div class="form-group"> | |
<label>Genre</label> | |
<select class="form-control"> | |
</select> | |
</div> | |
<div class="form-group"> | |
<label>Price</label> | |
<input name="price" class="form-control"> | |
</div> | |
<button type="submit" class="btn btn-default">Submit</button> | |
</form> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment