Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Created June 24, 2017 15:50
Show Gist options
  • Save bmorelli25/03bb6b2859d7488c74e116d14127492e to your computer and use it in GitHub Desktop.
Save bmorelli25/03bb6b2859d7488c74e116d14127492e to your computer and use it in GitHub Desktop.
weather website partial ejs file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
<link rel="stylesheet" type="text/css" href="/css/style.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<fieldset>
<form action="/" method="post">
<input name="city" type="text" class="ghost-input" placeholder="Enter a City" required>
<input type="submit" class="ghost-button" value="Get Weather">
</form>
</fieldset>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment