Last active
May 16, 2017 05:21
-
-
Save chrisbay/b67a34a89639786a42e38fdbd0b6f4b9 to your computer and use it in GitHub Desktop.
Web Caesar Form Template
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> | |
<style> | |
form { | |
background-color: #eee; | |
padding: 20px; | |
margin: 0 auto; | |
width: 540px; | |
font: 16px sans-serif; | |
border-radius: 10px; | |
} | |
textarea { | |
margin: 10px 0; | |
width: 540px; | |
height: 120px; | |
} | |
</style> | |
</head> | |
<body> | |
<!-- create your form here --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment