Is there a way to keep a line in html, but make it not seen or
used...
like a comment feature in old programming languages?
I am working on a web page (No? Really?) and I want to temporarily
remove the line to see what effect it has on the web page. Can I do
this
and then put it back later without using the cut and paste features
of
Windows?
Thanks. See... I told all of you that offered that I would be asking
for
help :)
~Susan Faulkner
Hi, Susan.
Yes, you can comment out a line or any part of an HTML file. Here's a
commented-out query from my queries.html file:
<!--
<a name="Sly"></a><b>VAN SLYKE</b><br>
I am trying to research my family tree. My grandmother grew up in
Chelan.
Her name was Harriet VAN SLYKE and she had a twin brother named Harold.
Her
father owned the bank in Chelan. Any information that I can find out
about
him would be helpful.<br>
<b>Diana Chartier</b>  <a
href="mailto:dianac@wagged.com">
dianac@wagged.com</a>  4 Jun 2001<br>
<hr width="65%">
-->
(The <!-- part starts a comment, and the --> terminates it.)
Regards,
John