Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: few questions

  1. #1
    Join Date
    Dec 2006
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default few questions

    hay all i have a few questions about html when im trying to add some text in the middle of my page i cant its because ive got a table that runs allthe way down the side of my page so with it i cant put any text beside it or can i?

    the other thing is how can i have a google search bar in my site

    and a "flash box" that runs off of the urls that you can copy from youtube

    so i set the usl in the html code and it will play it in the middle of my page remember about the table tho!

    and one last thing can you use spacing with just the space bar because when you use the <div align"right"> it may go a bit to far to the right so can you sort that one out

    [edit]and one other thing can i have email addy ad in name@mydomane.com

    well thats all i can think of right now or is it hmmm well ill keep ya all updated if i need some help if you don't mind

  2. #2
    Join Date
    Jul 2006
    Location
    Antwerp, Belgium (Europe)
    Posts
    927
    Thanks
    121
    Thanked 2 Times in 2 Posts

    Default

    Could you please place a link to your site, so we can see what you're talking about, and explain in normal sentences and decent English what your question/problem is ?

  3. #3
    Join Date
    Dec 2006
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    well it ain't online rite now and sorry bout the English im not so good at it (even no im welsh??)

    hmm ill try and post a picture of it so far

    sorry its been resized so its out of proportion the black [ ] are were things will go

  4. #4
    Join Date
    Dec 2006
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

  5. #5
    Join Date
    Apr 2006
    Posts
    205
    Thanks
    11
    Thanked 0 Times in 0 Posts

    Thumbs up

    Hey n00b1,

    sorry bout the English im not so good at it (even no im welsh??)
    No worries. I think I can help with some of your questions.

    can i have a google search bar in my site
    I just ran a search for, "google search on my site" and it came up with this:
    http://www.google.com/searchcode.html

    I'm viewing it in portugues but I'm guessing that's because I'm in Brazil. Let me know if it comes up in English (or Welsh) for you.

    Either way, here's the code that you'll need:

    HTML Code:
    <FORM method=GET action="http://www.google.com/search">
    <TABLE bgcolor="#FFFFFF"><tr><td>
    <A HREF="http://www.google.com/">
    <IMG SRC="http://www.google.com/logos/Logo_40wht.gif" <br>border="0" ALT="Google" align="absmiddle"></A>
    <INPUT TYPE=text name=q size=31 maxlength=255 value="">
    <INPUT TYPE=hidden name=hl value="en">
    <INPUT type=submit name=btnG VALUE="Google Search">
    </td></tr></TABLE>
    </FORM>
    when im trying to add some text in the middle of my page i cant its because ive got a table that runs all the way down the side of my page so with it i cant put any text beside it or can i?
    There are lots of way that you can lay text out on you page. If you are going to use tables it might get complicated. One tip is that it's possible to put tables inside tables. i.e. you could put the table running down the side of the page inside one of the cells of a bigger table.

    Personally I don't recommend that you design your pages with tables. There are other ways! Here is a link to a site that has some good beginners tutorials:
    htmldog.com/guides/

    I hope this helps.


    One last thing, what software are you using to write your HTML?

  6. #6
    Join Date
    Dec 2006
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    hi, thanks ill try it out now ill see if i can get the text to come as well um im just using a text editor called text-pad i have dreemwever but ive heard that the very best way to learn is hand code it in a text editor so you learn because dreemwever changes your code..

    ill check this out now thanks

  7. #7
    Join Date
    Nov 2006
    Posts
    99
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Instead of using just a plain and simple text editor. I would suggest using Syn Text Editor it will highlight code for you depending on what language/format you choose (HTML, CSS, PHP, C++, etc...) It even has a "template" like thing that it will throw together for you with just the basic/essential tags in it (ie.
    Code:
    <!-- Created: mm/dd/yy [TIME] by [NAME] -->
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional/EN">
    <html>
      <head>
        <title>Untitled</title>
        <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
        <meta name="generator" content="syn">
      </head>
      <body>
    
      </body>
    </html>
    That is what will pop-up for an HTML doc.

    -GT

  8. #8
    Join Date
    Jun 2006
    Location
    Acton Ontario Canada.
    Posts
    677
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default

    good, a replacement for coffecup...
    - Ryan "Boxxertrumps" Trumpa
    Come back once it validates: HTML, CSS, JS.

  9. #9
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    It even has a "template" like thing
    With an outdated DOCTYPE, and a bad encoding specified by a meta tag? Not my idea of a brilliant editor.

    Most good text editors (vim, Kate) will do syntax highlighting for you.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  10. #10
    Join Date
    Apr 2006
    Posts
    205
    Thanks
    11
    Thanked 0 Times in 0 Posts

    Default

    It even has a "template" like thing
    With an outdated DOCTYPE, and a bad encoding specified by a meta tag? Not my idea of a brilliant editor.
    It's nice to something to laugh at in the morning. Thanks professor.

    Most good text editors (vim, Kate) will do syntax highlighting for you.
    I'm using Windows which seems to rule Kate out for the time being. Regarding Vim I'm looking here in the PC directory but have no idea which version may be suitable for Windows XP Professional. How might a professor make such a decision?

    dog

Bookmarks

Posting Permissions

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