Hello,You can use &nbps; in HTML and also you can use margin property of CSS in style tag.
Below code for &nbps;
- <!DOCTYPE html>
-
<html>
-
<head>
-
<title>Page Title</title>
-
</head>
-
<body>
-
<input type="button" id="" value="reset" onclick="">
-
<input type="button" id="" value=" submit" onclick="" ">
-
</body>
-
</html>
Below code for margin property
-
<!DOCTYPE html>
-
<html>
-
<head>
-
<title>Page Title</title>
-
</head>
-
<body>
-
<input type="button" id="" value="reset" onclick="" >
-
<input type="button" id="" value=" submit" onclick="" style="margin-left:20px;">
-
</body>
-
</html>
-