What fresh hell is THIS now? - Patrick Lauke
<canvas></canvas>
just need to know what =P
[hannah] Hello all, I have a basic HTML question that I'd love some input on...
What's the best way to code a postal address? I was thinking either each line in a new <p> tag, or a <span> around each line with the CSS set to display:block;
Any input would be much appreciated. I want my website to be very screen-reader friendly!
<address>
with <br />
between lines is what I see most often. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address
according to that page "Usage note:
To represent an arbitrary address, one that is not related to the contact information, use a <p> element rather than the <address> element."
<p>
is the way to go then.
This is what apple claims "Accessibility
With some platforms, to use the Java Accessibility API, you must use a native bridge. This is not necessary in OS X because the bridging code is built in. Users can configure the accessibility features of OS X through the Universal Access pane of System Preferences. As a result, if you are using the Accessibility API, your application can use devices that the user has configured there.
Beginning with OS X v10.4, a screen reader called VoiceOver is included with the operating system. Your Java application automatically uses this technology.
"