Results 1 to 2 of 2

Thread: need help about HTML code?

  1. #1
    alb3rt Guest

    need help about HTML code?

    what is the function of:
    <script>
    <A>
    HREF
    Definition List
    <comment>


    __________________
    Wordpress Tips
    SEO Tips

  2. #2
    Join Date
    Mar 2010
    Location
    England
    Posts
    1,144
    <script> - This is used for client side coding languages, you write or include your JavaScript or whatever it is in there. So the browser knows its not HTML.

    <a> - Is an anchor, when an href attribute is added like so:
    [html]<a href="location.html">Click here</a>[/hml]
    Thenit now becomes a link ( i think href stands for hyper reference or something like that ), so in the example, if you click the link you will go to location.html

    href - Basically just explained above. It points to a file or location, it can be used in other things, not just links. For example it can be used to link in a stylesheet like so:
    HTML Code:
    <link [B]href[/B]="location.css" type="text/css" media="screen" rel="stylesheet" />
    Definition list - This is just another type of list, you have <ul>'s ( unordered ), <ol>'s ( ordered ) - these are the 2 main lists, which form either bulleted or numbered. For a definition list you would have something like:
    HTML Code:
    <dl>
        <dt>Title</dt>
        <dd>Description</dd>
        <dt>Title Again</td>
        <dd>Description Again</dd>
    </dl>
    As for <comment>, there is no such thing. To do a comment its like this:
    HTML Code:
    <!-- The comment goes between these arrow things. -->

Similar Threads

  1. Html form code for advance Paypal donate with multiple currencies options..How to ?
    By deeru1988 in forum Web Design, HTML Reference and CSS
    Replies: 0
    Last Post: 20 Sep 2009, 09:30 AM
  2. Salesforce.com Custom S-Controls and HTML code Help
    By Tony0930 in forum Freelancing
    Replies: 0
    Last Post: 19 Aug 2008, 09:18 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •