HTML generator/website builder

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jimykx
    No, I AM your father!
    • Jan 2010
    • 6640

    #1

    HTML generator/website builder

    I was looking for some sort of html creator where it would translate something you did into HTML code. All I wanted to do was have an image and position a youtube video on top of that image on a specific location. Any recommendations?
  • signa
    CS-Nation / TGN Staff
    • Dec 2004
    • 4191

    #2
    I recommend KompoZer Portable. (It's a portable app, runs from a folder, nothing installed).
    It works similar to a word processor.

    KompoZer is an easy-to-use web editor similar to Microsoft Frontpage or Dreamweaver. It is based on the same Gecko engine that powers Firefox and Thunderbird and features an FTP site manager, color picker, tabbed interface, CSS editing, standard-compliant markup, fully customizable interface, a built-in spellchecker and more.


    also, w3schools is a good place to look up / learn code. http://www.w3schools.com/

    if you need any help pm me.
    "Crunch's First Officer"
    twitter: @signaprime

    Comment

    • jimykx
      No, I AM your father!
      • Jan 2010
      • 6640

      #3
      Haaayoooo! Many thanks Signa.

      Comment

      • jimykx
        No, I AM your father!
        • Jan 2010
        • 6640

        #4
        I need some help signa, I wanted to know how could I make a certain area of an image clickable.
        For example, let's pretend I wanted to make the play button on the following image clickable:


        Like an invisible square around it, and if you clicked its area it would redirect you to a link. But only that specific area of the background image.
        I thought of adding a play button image on top of the already existing one, with a link to redirect to. I thought of doing the same but with a transparent/invisible image. Is there any other way? Because I really wanted to have the images already integrated into the background

        Comment

        • jimykx
          No, I AM your father!
          • Jan 2010
          • 6640

          #5
          I ended up making the background image with everything I wanted and then setting a transparent image with the link redirect on top of the area I wanted. I just now need to find out how to make the links open in a new tab instead of just opening

          Comment

          • signa
            CS-Nation / TGN Staff
            • Dec 2004
            • 4191

            #6
            Originally posted by jimykx View Post
            I need some help signa, I wanted to know how could I make a certain area of an image clickable.
            that is possible. In fact that used to be really popular about 10 years ago. I'll have to look up the code.

            edit, found it: http://www.w3schools.com/tags/tag_map.asp


            Originally posted by jimykx View Post
            I ended up making the background image with everything I wanted and then setting a transparent image with the link redirect on top of the area I wanted. I just now need to find out how to make the links open in a new tab instead of just opening
            for links to open in a new window / tab, you use the 'target' code.

            Code:
            <a href="www.google.com" target="_blank">link text</a>
            <a href="www.google.com" target="_windowname">link text</a>
            W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
            "Crunch's First Officer"
            twitter: @signaprime

            Comment

            • jimykx
              No, I AM your father!
              • Jan 2010
              • 6640

              #7
              worked wonders signa! awesome! Many thanks !!

              Comment

              Working...