diff options
Diffstat (limited to 'cool-inputs/src/index.html')
| -rw-r--r-- | cool-inputs/src/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cool-inputs/src/index.html b/cool-inputs/src/index.html new file mode 100644 index 0000000..de52cb3 --- /dev/null +++ b/cool-inputs/src/index.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8"> + <link rel="stylesheet" href="styles.css"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Cool inputs</title> + </head> + <body> + <form> + <section class="input-selection"> + <input type="text" placeholder="Username"> + <label>Username</label> + </section> + <section class="input-selection"> + <input type="password" placeholder="Password"> + <label>Password</label> + </section> + </form> + </body> +</html> |
