Skip to content
Permalink
ac9b814517
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
25 lines (19 sloc) 652 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Week 8 Part 2</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form id="emailForm">
<input type="text" name="name" placeholder="Name"><br>
<input type="text" name="email" placeholder="Email"><br>
<input type="text" name="subject" placeholder="Subject"><br>
<input type="text" name="message" placeholder="Message"><br>
<input type="submit" value="Send Message">
</form>
<script src="emailForm.js"></script>
</body>
</html>