SysChat

SysChat (http://www.syschat.com/forum.php)
-   Development (http://www.syschat.com/software-support/development/)
-   -   Html Code Writing Method (http://www.syschat.com/html-code-writing-method-3093.html)

benzaloy 01-24-2008 04:13 AM

Html Code Writing Method
 
Please show me the proper way to write this html code. In case you do not handle instructions on writing html code please say so and I shall understand.

I have an instruction that reads:

Point to name with # at front:

<a href="#internal"> go to internal links</a>

Please tell me what I should write in the 2 spaces there:
1... "#internal"

2 ... go to internal links

I have 3 or 4 other questions on this subject.
If you answer this question, thereafter I shall ask the others.

I appreciate and am grateful for the kind and quick responses you have given me in the past.

Thank you.

squirrelnmoose 01-24-2008 12:39 PM

Here is the structure of a link.
<a href="url">Text to be displayed</a>

The # symbol indicates an anchor somewhere else on the page.
<a href="#internal"> go to internal links</a>
This will display a link with the text "go to internal links" and when clicked it will move down the page to the anchor tag with the name internal.

Here is a great website for learning HTML.
HTML Links

benzaloy 01-24-2008 10:51 PM

Writing html code
 
Quote:

Originally Posted by squirrelnmoose (Post 9454)
Here is the structure of a link.
<a href="url">Text to be displayed</a>

The # symbol indicates an anchor somewhere else on the page.
<a href="#internal"> go to internal links</a>
This will display a link with the text "go to internal links" and when clicked it will move down the page to the anchor tag with the name internal.

Here is a great website for learning HTML.
HTML Links

Thank you SnM. Your explanation is clearer than what I read on this subject.

Also thank you for pointing the w3school for me. i feel it is easier to get the info from SysChat than learn html cde in w3schools.

Cheers, ben


All times are GMT -4. The time now is 09:53 AM.


Copyright © 2005-2013 SysChat.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54