Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. Blnukem

    HTML & CSS how to add useable year select for my page

    Here is an example you will need to tailor to your needs: <select id="dynamic_select"> <option value="" selected>Pick a Website</option> <option value="http://www.google.com">Google</option> <option value="http://www.youtube.com">YouTube</option> <option...
  2. Blnukem

    HTML & CSS Aligning a caption and its image

    Here yo go: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title></title> <style> .img-container { text-align: center; } </style> </head> <body> <div...
  3. Blnukem

    HTML & CSS HTML Editor within HTML website

    Here is what you need: Embed HTML Editor
  4. Blnukem

    HTML & CSS Inserting image in a web page

    "If" you have uploaded the image, then you have the path wrong. IE: "images/PP.jpg" try uploading the image into the "same" directory as your html file and use this code: <img src="pp.jpg" style="width:300px; height:300px;" alt = "my pic"> Be sure to rename your pic to "pp.jpg" all lower case...
  5. Blnukem

    HTML & CSS How to add menu buttons and make them work ?

    Just checked, Tealk is 100% code works fine.
  6. Blnukem

    Is there a way to find an XML page of a site?

    Your best option is use a page scraper to get the data you are looking for, the HTML "table" tag is not used in most of responsive websites.
  7. Blnukem

    HTML & CSS Inserting image in a web page

    Yes, But there are free option out there just search for: "free hosting" -or- "free domain" you will find a option that fits your needs.
  8. Blnukem

    HTML & CSS Inserting image in a web page

    http://127.0.0.1:5500/index.html is the "local" address of a PC, probably yours. You must upload your HTML page to a "webserver" with a "valid Domain name" to allow it to be viewed publicly.
  9. Blnukem

    HTML mailto command is adding + signs in the mail.

    I will not go into fixing this as it is a "very bad" way to send mail, most new browser's will throw a security error with this method. This will help you: html-email-form
  10. Blnukem

    HTML & CSS Inserting image in a web page

    Other then you are missing the ; at the end of -> height:300px everything should work be sure the path to the image is correct ->images/PP.jpg and that it is uploaded or in the proper folder.
Back
Top Bottom