0
Code for heading
I need to code to format the heading title so it's center but need a username an password input to the right of the title heading.
1 ответ
0
...
<body>
<center>
<h1>Heading</h1>
<form action="POST">
<input type="text" name="username" /><br />
<input type="password" name="password" />
</form>
</center>
...
</body>
</html>