Skip to content
Permalink
3f60845de1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
33 lines (23 sloc) 854 Bytes
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="contactstyles.css">
<title>Contact Form</title>
</head>
<body>
<style type="text/css">
label {display: block;}
</style>
<form action="process_email.php" method="POST">
<label>Name: <input type="text" name="name" value="" placeholder="Type your full name"></label>
<label>Email: <input type="email" name="email" value="" placeholder="username@domain.com">
</label>
<label>Subject: <input type="text" name="subject" value="" placeholder="Subject"></label>
<label>Message:<br> <textarea name="message" id="" cols="50" rows="20"></textarea></label>
<input type="submit" value="submit">
</form>
</body>
</html>