100-Days-Of-Code/Visual Studio Code Projects/html-forms/templates/index.html

16 lines
302 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<label>Name</label>
<input type="text" placeholder="name">
<label>Password</label>
<input type="text" placeholder="password">
<button type="text">Ok</button>
</body>
</html>