37 lines
907 B
HTML
Raw Permalink Normal View History

2021-03-31 21:56:49 -04:00
<!DOCTYPE html>
<html lang="en">
<title>Join a social network</title>
<link rel="stylesheet" href="styles.css">
<body>
<h1>Join a social network</h1>
<!-- Add the form below -->
<form action="https://wp.zybooks.com/form-viewer.php" method="post"
enctype="multipart/form-data">
<div>
<label for="fullName">Full name:</label>
<input type="text" id="fullName" name="fullName" required>
</div>
<div>
<label for="email">Email address:</label>
<input type="email" name="email" id="email" required>
</div>
<div>
<label for="about">About you:</label>
<textarea rows=3 cols=50 name="about" id=about></textarea>
</div>
<div>
<label for="picture">Photo:</label>
<input type="file" name="picture" id="picture">
</div>
<div>
<input type="submit">
</div>
</form>
</body>
</html>