mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-18 12:33:22 +00:00
27 lines
749 B
HTML
27 lines
749 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<form>
|
|
<label for="name">Name</label>
|
|
<input type="text" id="name" name="name">
|
|
|
|
<label for="email">Email</label>
|
|
<input type="email" id="email" name="email">
|
|
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password">
|
|
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html> |