In HTML, we use the input element to get all kinds of user input like emails, passwords, dates, and more.

We'll learn how to use the user input in a website later. For now, we'll focus on creating the element and setting its attributes.

<html>
<head>
<style>
body {min-height: 400px;} input { font-size: 16px;}
</style>
</head>
<body>
<h4>Sign Up</h4>
<p>Email:</p>
<input type="email" placeholder="email">
<p>Password:</p>
<input type="password" placeholder="password">
<p>Date of birth:</p>
<input type="date">
</body>
</html>]]>