Untitled
unknown
plain_text
a year ago
762 B
4
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Cards</title> <link rel="stylesheet" href="index.css"> </head> <body> <form id="userForm"> <label for="name">Name:</label> <input type="text" id="name" name="name" required><br><br> <label for="username">Username:</label> <input type="text" id="username" name="username" required><br><br> <label for="email">Email:</label> <input type="email" id="email" name="email" required><br><br> <button type="submit">Create User Card</button> </form> <div id="card-list"></div> </body> </html> <script src="index.js"></script>
Editor is loading...
Leave a Comment