<!DOCTYPE html>
<html>
<head>
  <title>Basic Form</title>
</head>
<body>

<form action="#" method="post">
  
  <label for="name">Name:</label><br>
  <input type="text" id="name" name="name" required><br><br>

  <label for="email">Email:</label><br>
  <input type="email" id="email" name="email" required><br><br>

  <label for="phone">Phone Number:</label><br>
  <input type="tel" id="phone" name="phone" required><br><br>

  <button type="submit">Submit</button>

</form>
</body>
</html>