How to Remove the Borders on Input Fields
- 1). Scroll to the BODY tag in your HTML file.
- 2). Find the INPUT tag with the border you want to remove, such as:
<form>
Name <input type="text" name="Name" />
<input type="submit" value="Submit" />
</form> - 3). Add -- style="border:none;" -- to the INPUT tag as follows:
<input type="text" name="Name" style="border:none;" />
Source...