Created
November 9, 2016 15:01
-
-
Save balqis-purorchid/88fbdaa03520569d55a41e0502a08a22 to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'> | |
<link rel="stylesheet" href="https://s3.amazonaws.com/codecademy-content/projects/bootstrap.min.css"> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
<div class="header"> | |
<div class="container"> | |
<img width="50px" src="https://s3.amazonaws.com/codecademy-content/projects/pocketbook/logo.svg"/> | |
</div> | |
</div> | |
<div class="main"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-8"> | |
<h1>Join Pocketbook!</h1> | |
<form> | |
<label class="control-label">First Name</label> | |
<input type="text" class="form-control" placeholder="First Name"> | |
<br> | |
<label class="control-label">Last Name</label> | |
<input type="text" class="form-control" placeholder="Last Name"> | |
<br> | |
<label class="control-label">Email</label> | |
<input type="text" class="form-control" placeholder="Email"> | |
<br> | |
<label class="control-label">Password</label> | |
<input type="password" class="form-control" placeholder="Password"> | |
<br><br> | |
<button type="submit" class="btn">Create account</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="footer"> | |
<div class="container"> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment