<!DOCTYPE html> <html> <head> <title>login</title> <style> body{ background-image: url(aaa.jpg); background-repeat: no-repeat; background-size: 100%; } td{color: beige; font-size: 20px; font-style: italic; font-variant: small-caps; } <!--majuscul--> tr{color: thistle;} a{color: royalblue} #as{font-size: 20px; color: thistle; text-decoration: underline overline red dotted; }<!--dotted:mgata3 wavy:m3awej double --> </style> </head> <body> <form> <table> <tr> <td>Email:</td> <td><input type="email" placeholder="Email" required</td> </tr> <tr> <td>Password:</td> <td><input type="password" placeholder="password" required</td> </tr> </table> <button type="submit">login</button> <button type="reset">Cancel </button><br> <a href="signina.html" id="as">signin</a> </table> </form> </body> </html>