Skip to content

Instantly share code, notes, and snippets.

@thomcrowe
Created February 6, 2016 21:40
Show Gist options
  • Save thomcrowe/b600083b28809839a669 to your computer and use it in GitHub Desktop.
Save thomcrowe/b600083b28809839a669 to your computer and use it in GitHub Desktop.
HTML for the Contact Page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/ico" href="/favicon.ico">
<TITLE>Contact Me</TITLE>
<!-- Normalize CSS -->
<link rel="stylesheet" href="css/normalize.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/contact_styles.css">
</head>
<body>
<div class="header">
<h1>Contact</h1>
<h2>Thom Crowe</h2>
</div>
<div class="container">
<div class="main-text">
<h3>Thanks for stopping by</h3>
<p>If you found any reason on the site that you'd like to talk to me, I'm always up for it. Here's my email.
</p>
<h1>[email protected]</h1>
<p>You can also feel free to give me a call or text at 918.346.5014. If you're planning to send mail or message via carrier pidgeon, try reaching out with an email first, or you could fill out the form below.</p>
</p>
</div><!-- /main-text -->
</div><!-- /container -->
<div class="contact-form">
<form action="#" method="post">
Name <input type="text" placeholder="Homer"/>
<input type="text" placeholder="Simpson"/><Br>
Email <input type="text" placeholder="[email protected]"/><br>
Message <input type="textarea" placeholder="There's a donut sale, I'm not going to be in today."><br>
<input type="submit" value="Send"/>
</form>
</div><!-- /contact-form -->
</form>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment