HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Search results

  1. cittybb24356

    STUCK ON THIS FOR OVER A WEEK! PLEASE HELP ME

    Is this script or program trying to pop up some information? I'm trying to figure out what's wrong. Or what else is to be done. You won't be able to link those buttons to some other page. They use C# or C++ or Java programs to do that. Here is what it looks in a class filed compiled and...
  2. cittybb24356

    STUCK ON THIS FOR OVER A WEEK! PLEASE HELP ME

    Use cut and paste method to get your script into the temporary storage paper clip area. Press copy or cut. Then go to this page or forum, and paste it on there. It shows up as is...
  3. cittybb24356

    Can an Anchor tag be used in a URL ?

    document.write("<p>Without this code, your body tag would be empty. This paragraph is created when the browser gets to the script tag</p>"); Try this in your script. Going to the correct section of the document first. <p id="3"> Part you want first.</p> This redirects your page onload event to...
  4. cittybb24356

    on click button not working. Could you please help me in identifying the bug

    Here is the final code <body> <p id="Demo"> <button onclick="changeText()"> click me </button> <script> function changeText(); let i=0; let text=" Gokaraju" , " 2nd CSE A ", " Siva"; for( i; i < text ; i++) { text += text; } //end loop document.getElementByid("Demo").innerHTML(text); </script>...
  5. cittybb24356

    Can an Anchor tag be used in a URL ?

    No. Have you tried to write each page leading to a specific section of the page? When you use an anchor tag. If there's 6 sections to a page, then you'll have 6 web pages all leading to that section. But they are the same page. This belongs in the header. Leading up to that section. <div...
  6. cittybb24356

    on click button not working. Could you please help me in identifying the bug

    What you wanted was 3 choices. Gokaraju, 2nd CSE A, and Siva when pressed three times. Then you need to write it differently. Value returns to the original text or null because a space in memory is being used. The next option. 2nd CSE A. Now it's conditional. Try this in your script. //...
  7. cittybb24356

    HTML Table Format

    <table border=1 width="100%> <tbody> <tr> <td> Set 1 </td> <td> Set 2 </td> </tr> </tbody> </table> This codes work. I'm not sure on this forum though. Row 1 and column 1 &2. Just checking.
  8. cittybb24356

    HTML Table Format

    This comes out to be a png file when saved. So you did this on word on Windows. Txt file extension. When you got it into the forum. I can save this and it comes out to be a png file. Okay on that. I don''t know why but the computer just converted it to png file automatically when saving...
  9. cittybb24356

    send an image (or hyperlink of the image) to a user via webpage?

    your email url goes here Or add that to your web page. Then add a picture in the background of your email. Might work. Just place your url email in the web page. The BB codes EMAIL have already been programmed to do this.o You need a server to see your picture. But BB codes or html codes...
  10. cittybb24356

    Help with Contact Form

    Why not? And where was this work at? All they are going to do is give you a code to use on the Dream Weaver and it overrides every thing on it and run it again. To use. They do this in Java. Anyway, what's your story with a Rebuttal? This HTML thing is easy. Just got to study. You're not...
  11. cittybb24356

    send an image (or hyperlink of the image) to a user via webpage?

    Do you have programming experience in C# or C++ or Java? Those are programs you need to complete first before the email from your web page can be used. It's like a download extensions. They show up as an icon on your computer. Something must show up on your web email. First write the...
  12. cittybb24356

    I need some help from anybody with coding/html experience

    import java.net.*; import java.io.*; import java.util.Date; import java.util.StringTokenizer; class copyURL { public static void main(String args[]) { if (args.length < 1) { System.err.println ("usage: java copyURL URL [LocalFile]")...
  13. cittybb24356

    Who took computer programming courses in school?

    I took up a Data processing class in college. Then I took up a computer class that taught Java programming language. So I'm learning that too on the internet resources. I learned a lot off the computer classes I took up in college.
  14. cittybb24356

    Are you buying iPhone 14?

    I would like to. But too expensive. I have the SE 2020 version of iPhone. But the iPhone 14 has a beacon on it. This tells your location. IN case you go hiking and get lost, some one can look for you. Just turn on the beacon.
  15. cittybb24356

    How long have you been on forums?

    About 8 sports forums. 8 times they have banned me. Some thing about the sports forum that gives automatic ban. It's not the html or bb codes or any of the computer stuffs. Just the topic. So they ban me 8 times. So I took up computers before I took up sports. Or at least simultaneously...
  16. cittybb24356

    on click button not working. Could you please help me in identifying the bug

    Change text() is a method. Syntax is wrong. Use or name it properly. myFunction() or changeText() which ever suits you. Into your coding. <script> function myFunction() { document.getElementById("demo").innerHTML = "Hello World"; //or something else. Add your own words. It is not a...
  17. cittybb24356

    STUCK ON THIS FOR OVER A WEEK! PLEASE HELP ME

    Download an html editor to do all your html coding. Then you can view it. It's free too. And you want to pay for the files you created too? To see how it looks in a real browser situation. That's done with the help of a server. Server side applications. We are clients. But turn it...
  18. cittybb24356

    Do you like working online or offline?

    That depends. What's the topic being discussed. If I like coding html or some other language to change things around, I'll work online. And leave the website on line for few days so that others can view the content. Online. Google is good at this. So online or offline, it can be visible to...
  19. cittybb24356

    HTML Table Format

    This is not an html problem. Pdf files are Adobe acrobat programs. The programs they have on the applications handles those things. Fit it on one or both pages. Application programs to this.
  20. cittybb24356

    Remove Gaps in HTML Table in OUTLOOK!

    What have you tried? Did you try <br> to see if that give a space in the email signature. This a table and some other content in it. Can they alter OUTLOOK now? I didn't know. Nicely snugged and fit into the table. You 'll have to measure the screen in px, then see if the png file fits...
Back
Top