I was expecting so see my counter/link button/etc., etc. but all I got was stuff that looked like this:
<a href="http://clik.to/somewhere"> visit the webmaster</a>
and it was supposed to look like this:
<a href="http://clik.to/somewhere">visit the webmaster</a>
What you have managed to do is to paste a representation of real html into your page - not the real code but the text representation of it. Maybe what you cut was something from an active web page. Only 'cut/copy' code from either the source of a web page or from something that explicitly says you can copy this section and paste into your web file.
This problem is more than likely not your fault - it is probably that the editor you are using is sooooo smart it knows better than you and messes things up!! Instead of using the 'smart' editor, use a really dumb editor like Notepad. Open your html file in Notepad, make the changes you want, and save the file. Then open the changed file with your smart editor for fine-tuning or 'publishing to the web'.
Frontpage/FP Express/FP 2000 and similar editors (WYSIWYG - what you see is what you get .. more or less) are a special case. Each of these editors works in a slightly different way, but they share a common general method. The 'paste' icon will paste whatever is in the clipboard (where you copied stuff to) as text and not as html code.
To 'paste' code, you need a different method. Typically for these editors, the procedure is to choose INSERT from the toolbar, and then select HTML Markup, or INSERT, then select ADVANCED then select HTML.
|