Jump to content

alhanson

Members
  • Posts

    16
  • Joined

  • Last visited

About alhanson

  • Birthday 06/30/1947

Previous Fields

  • Languages
    English

Contact Methods

  • Website URL
    http://alhanson.com

Profile Information

  • Location
    Wisconsin
  • Interests
    HTML5

alhanson's Achievements

Newbie

Newbie (1/7)

1

Reputation

  1. Do you mean a radio button to select and a input button to submit? http://www.w3schools.com/html/html_form_input_types.asp
  2. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/marquee Dang it still works ........ <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <marquee>This text will scroll from right to left</marquee> </body> </html>
  3. .co is the Internet country code top-level domain (ccTLD) assigned to Colombia. It is administered by .CO Internet S.A.S.[3] As of July 10, 2010, there are no registration restrictions on second-level .co domains; any individual or entity in the world can register a .co domain. ... Wikipedia
  4. http://www.w3schools.com/css/css_boxmodel.asp
  5. Site Name: alhanson.com Site Description: A first grade portal into w3school Site Owner/Developer: al Site Address:http://www.alhanson.com/alhanson/tabnine/videoShelfMn12/w3school/myWorld.html Extra Comments: html5 site built to run in chrome and use online html coding through the w3school website.
  6. Ann, You have going beyond what wordpress can offer. Wordpress is blog type software with its auto completes and generated code for people that think they are Professionals. Wordpress is junk that creates outdated dinosaur pages in an ever changing web. You are just going to have open up notepad and create your own slideshow. al
  7. here is the link to the Heading Exercises. Everything works fine. http://www.w3schools.com/html/html_headings.asp
  8. w3school runs with in your Browser. What Browser are you using? Down load and use a different Browser like Chrome if that,s the one you are not using.
  9. Why do you want to buy a server? When you can have a hosting company host your site for very little money. Let the hosting company worry about all the problems of running a server.I use Bluehost, Domain names are 10 dollars a year and the hosted site is less than 10 dollars a month. The hosting company come with a lot of free services, that are part of the package. Most servers are Linux and run command-line. So you would need to know Linux command-line first. But if you want to play around with servers an old PC will do and you can down load the Linus OS for free. al
  10. Just goes to show what you know Ingolme. Actually it is the future! Why is it i can’t load a picture of myself into my profile in the Forum? I was going to use the one Steve Job’s wife had taken of me. It’s the one that sat on top of the piano in their house. I get it, you're telling me i am old!
  11. <!DOCTYPE html> <html> <body> <object width="600" height="440" data="page.html"> </object> <!-- or --><br /> <embed width="600" height="440" src="page.html"> </body> </html>
  12. Try this <embed src="/taveuni/merged.mp3" autostart="true" loop="true" width="2" height="0"> </embed> Volume is contolled by the hardware on the device.
  13. The javascript in the above code i posted a year ago runs client side. The Synthesiser is in the browser. Thus, the words come over the internet in html page as text. And, the book can be used off line. The following is an example.... http://www.alhanson.com/alhanson/tabeight/myBook00/bob006.html
  14. Speech Synthesiser on the js page... function playIt00() { var u = new SpeechSynthesisUtterance('Hello World'); speechSynthesis.speak(u); } <!DOCTYPE html> <script language="javascript" src="js/text025.js"></script> <text type="input" id="forEmbed" onclick="playIt00()">Hello World!</text> </html> Question; On the nexus 7 or iPad is the Speech Synthesiser Client side? Thus i am only moving the code (text)? Not the Synthesiser each time.
×
×
  • Create New...