Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: HTML Help  (Read 16521 times)

0 Members and 1 Guest are viewing this topic.

nymph4

    Topic Starter


    Specialist

    HTML Help
    « on: March 17, 2009, 06:47:00 PM »
    I know the Code for puting a Font on a Web Site

    and I can type Times New Roman  and the Font size.

    How many Diferant Font Styles do Browsers take or can Display?

    What I meen is can I just type ny Font Style I want in like Script or what is the deal???
    thanks

    Carbon Dudeoxide

    • Global Moderator

    • Mastermind
    • Thanked: 169
      • Yes
      • Yes
      • Yes
    • Certifications: List
    • Experience: Guru
    • OS: Mac OS
    Re: HTML Help
    « Reply #1 on: March 18, 2009, 08:00:48 AM »
    You seem to have a habit in posting in the wrong sections.....

    You will like this:
    http://www.hobo-web.co.uk/tips/55.htm

    kpac

    • Web moderator
    • Moderator


    • Hacker

    • kpac®
    • Thanked: 184
      • Yes
      • Yes
      • Yes
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Windows 7
    Re: HTML Help
    « Reply #2 on: March 18, 2009, 10:33:40 AM »
    How many Diferant Font Styles do Browsers take or can Display?

    That depends on what fonts are installed on the visitors OS.

    What I meen is can I just type ny Font Style I want in like Script or what is the deal???

    Web designers usually list two or three, like so:

    Code: [Select]
    <div style="font-family:verdana, courier, impact;">

    The browser first searches on the system for the first one, if it can't find it, it then goes to the next one, and so on. You can list as many as you like, depending on your audience, but just list your more preferable one first and then in decreasing order of preference. :)

    nymph4

      Topic Starter


      Specialist

      Re: HTML Help
      « Reply #3 on: March 18, 2009, 04:46:44 PM »
      I know if I want to put the Times New Roman Font on a Web Page I use this code.

      <FONT SIZE="4" FACE="TIMES NEW ROMAN">

      Now if my Visiter does not have this Font on there computer I know I can give another Font to pick from.

      So if I want there Browser to pick from two Fonts say Times New Roman   and Arile would I do this.

      <FONT SIZE="4" FACE
      ????????="TIMES NEW ROMAN, Arile">

      kpac

      • Web moderator
      • Moderator


      • Hacker

      • kpac®
      • Thanked: 184
        • Yes
        • Yes
        • Yes
      • Certifications: List
      • Computer: Specs
      • Experience: Expert
      • OS: Windows 7
      Re: HTML Help
      « Reply #4 on: March 19, 2009, 10:37:35 AM »
      Exactly. Just seperate them using a comma (,).

      nymph4

        Topic Starter


        Specialist

        Re: HTML Help
        « Reply #5 on: March 19, 2009, 10:29:28 PM »
        I need help with an  HTML Code that I am useing to make a Table.

        I would like it to have Two Cells right underneeth one another and then One Cell to the Right.

        And it works but one thing.
        What ever I put in the Cell to the  Right will only line up with the Cell to the Left of it on the Bottum.

        You can see how the Cell on the Right TUGS on the Cell to the Bottum Left.

        Why wont they be even???

        <TABLE BORDER="5" cellspacing="5">
        <TR>

        <TD width="320" hight="75">
        <CENTER>
        <a href="index.html"><font size="4" face="Times New Roman">
        Click here to go back to the Home Page.
        </FONT>
        </CENTER>
        [/url]
        </TD>
        </TR>

        <TR>
        <TD width="320" hight="75">
        <CENTR>
        <a href="Resume.html"><font size="4" face="Times New Roman">
        Click here to go to the Atist Resume Page.
        </FONT>
        </CENTER>
        [/url]
        </TD>


        <TD width="320" hight="75">
        <CENTER><IMG SRC="lips.GIF" HIGHT=120 WIDTH=120 BORDER=0></CENTER>
        </TD>
        </TR>
        </TABLE>

        nymph4

          Topic Starter


          Specialist

          Re: HTML Help
          « Reply #6 on: March 20, 2009, 01:34:46 PM »
          OK I am still trying to get my Code right.

          If I want to have a Table and have a list of Cells one on top of the other on the Left hand side and one Cell on the Right hand side I can do that.

          But the Bottum Right Cell always line up with the Bottum Left hand side.

          I would like te Text or Image or whatever I put in the Right hand Cell to be Centered and not force the Bottum Left hand Cell to line up with it.

          I saw some topics on this and they show you what it looks like  but they don't tell you how to do it.


          kpac

          • Web moderator
          • Moderator


          • Hacker

          • kpac®
          • Thanked: 184
            • Yes
            • Yes
            • Yes
          • Certifications: List
          • Computer: Specs
          • Experience: Expert
          • OS: Windows 7
          Re: HTML Help
          « Reply #7 on: March 20, 2009, 02:56:03 PM »
          Could you draw the type of table you want with Paint or some other editor? It's hard to tell you the code when it is just explained in words.

          Is this what you want?

          Code: [Select]
          <table border="1">
            <tr>
              <td>Hello!</td>
              <td>Hello!</td>
            </tr>
            <tr>
              <td>Hello!</td>
              <td>Hello!</td>
            </tr>
          </table>

          nymph4

            Topic Starter


            Specialist

            Re: HTML Help
            « Reply #8 on: March 20, 2009, 05:29:40 PM »
            thanks but I found a help topic that showed me how to do it.

            nymph4

              Topic Starter


              Specialist

              Re: HTML Help
              « Reply #9 on: March 21, 2009, 01:02:35 PM »
              I do have one thing to ask about puting images on Web Pages?

              When you put an Image on a web page I know you ad Hight and Width code  I get this and it works.

              But I tryed something and I wanted to know if it was a flook or if this is a faster way to resize images you put on web pages.

              One way is to ad you photo and use Width and Hight code to resize the photo but it takes some time for you to get it the right size.

              Then I did this

              If you just use eather the Hight code by itself  or the  Width code by Itself  the browers  ajusts the other in proportion.


              Is this a flook or is this a good way to do this???

              squall_01



                Prodigy

                Thanked: 80
                Re: HTML Help
                « Reply #10 on: March 21, 2009, 01:06:13 PM »
                if you have dreamweaver you can do it in there or even just use a 30 day or so.
                Windows 7 RC Tester.  Working on it.  Your monitor says etchasketch on the side!

                If I fall who is there to pick me up now.  I stand alone but I stand as the gaurdian for whom I wish to protect.  The sound of my blade utters my name as you fall.  For I shall not move.  For those that forsake the very people are wosres

                kpac

                • Web moderator
                • Moderator


                • Hacker

                • kpac®
                • Thanked: 184
                  • Yes
                  • Yes
                  • Yes
                • Certifications: List
                • Computer: Specs
                • Experience: Expert
                • OS: Windows 7
                Re: HTML Help
                « Reply #11 on: March 21, 2009, 01:09:17 PM »
                Is this a flook or is this a good way to do this???

                This is fine to do. It won't really increase loading times at all.

                squall_01



                  Prodigy

                  Thanked: 80
                  Re: HTML Help
                  « Reply #12 on: March 21, 2009, 01:10:41 PM »
                  that true there is a number of factories that can cause it to load slowly.
                  Windows 7 RC Tester.  Working on it.  Your monitor says etchasketch on the side!

                  If I fall who is there to pick me up now.  I stand alone but I stand as the gaurdian for whom I wish to protect.  The sound of my blade utters my name as you fall.  For I shall not move.  For those that forsake the very people are wosres

                  kpac

                  • Web moderator
                  • Moderator


                  • Hacker

                  • kpac®
                  • Thanked: 184
                    • Yes
                    • Yes
                    • Yes
                  • Certifications: List
                  • Computer: Specs
                  • Experience: Expert
                  • OS: Windows 7
                  Re: HTML Help
                  « Reply #13 on: March 21, 2009, 01:12:16 PM »
                  Factories? ;D

                  If the image file is over 200kb, then you might want to resize it before uploading.

                  nymph4

                    Topic Starter


                    Specialist

                    Re: HTML Help
                    « Reply #14 on: March 21, 2009, 01:19:46 PM »
                    This is what I ment.

                    If I put an Image on a web page and use both  Width and Hight code to ajust my image  for me it may take some time to get the corect Hight and Width.

                    But if I just put down the Hight code  without  putting don the Width code  the Broswer seems to  auto ajust the Width in Proportion on screen.

                    I am not talking about Loading faster I just ment I can just put down Hight code and let the Browser auto ajust the Width.

                    It did it but I wanted to know if it is sapost to work like this to  or if it just was a Flook for me???