<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <link rel=”stylesheet” href=”http://kyn1013.m/css/style.css”> <title>Hello from HTML!</title> </head> <body> <form id=”login-form” class=”hidden”> <input required maxlength=”15″ type=”text” placeholder=”What is your name?” /> <button>Log In</button> </form> <h2 id=”clock”>00:00:00</h2> <h1 id=”greeting” class=”hidden”></h1> <form id=”todo-form”> <input type=”text” placeholder=”Write a To Do and Press Enter” required/> </form> … Read more