How to Get Rid of HTML Formatting
HyperText Markup Language, or HTML, formatting is controlled by the Cascading Style Sheets, or CSS, file linked in your Web pages. To get rid of the formatting, you must remove the link to the CSS page. The format returns to the default layout for HTML pages, so you must add a new link if you decide to format the page in the future.
Instructions
-
-
1
Right-click the HTML page that contains the formatting you want to remove. Click "Open With," then double-click the HTML editor in the list of programs.
-
2
View the code between the <head> and </head> tags. The link to your CSS page is placed within these two tags, which are located at the top of the HTML code.
-
-
3
Remove the link tag that links to the CSS page. For instance, the following code links to a CSS document named "styles":
<link rel=StyleSheet href="styles.css" TYPE="text/css">
Deleting this tag removes the HTML format on the Web page.
-
1