Skip to content

Instantly share code, notes, and snippets.

@iamdtang
Created February 17, 2015 01:43
Show Gist options
  • Save iamdtang/acdc52722fc8603f960b to your computer and use it in GitHub Desktop.
Save iamdtang/acdc52722fc8603f960b to your computer and use it in GitHub Desktop.
html
<!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