I wish to display a text field with two buttons under it, and I want one of the button on the leftmost part (that’s very easy because that's the default), and the other on the rightmost part (this I don’t really know how to implement this). I am currently using something like this :
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
</head>
<body>
<fieldset>
<input name="words" type="text" id="words" size="60" /><br><br>
<input type="button" id="lb" name="leftbutton" value="leftbutton" />
<input type="button" id="rb" name="rightbutton" value="rightbutton" />
</fieldset>
</body>
</html>
With this kind of code, I can adjust the number of to make the other button fit on the far right, but that’s obviously not the right way to do things. Perhaps I should use a table ? How ?