How to place HTML element for Surname input in the bottom of HTML page?
<head>
</head>
<body>
    Name <input value ="aaa" >
    Surname <input value = "ccc" >
</body>
</html>
Currently it is placed at the top of the page . What would be a better solution for making it go to the bottom of the page than using many <br> tags?
 
     
    