Skip to content

Instantly share code, notes, and snippets.

@abhishekjakhar
Created October 14, 2018 18:38
Show Gist options
  • Save abhishekjakhar/e0bd25e85821e4d4ee4314e12b69b845 to your computer and use it in GitHub Desktop.
Save abhishekjakhar/e0bd25e85821e4d4ee4314e12b69b845 to your computer and use it in GitHub Desktop.
Multiple Input Element
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Form</title>
<link rel="stylesheet" href="css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<form action="index.html" method="post">
<input type="text" id="name" name="student_name">
<input type="email" id="mail" name="student_email">
<input type="password" id="password" name="student_password">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment