Cover | Table of Contents
FONT or BLINK. However, the two pages did demonstrate all that was critical about the Web: both pages were available to anyone with an Internet connection, each was at a specific location that could be called up again, and the pages were served through a coordination between server and client that was both unprecedented and mesmerizing.
<circle r="6" cx="24" cy="16"/>
vi, a popular Unix text editor.alt attribute in an img element provides a way to textually describe an image. Providing a text link to go with an image's mouse-driven menu item allows access to site navigation regardless of whether a person is using a keyboard or a mouse.img1.somedomain.com img2.somedomain.com img3.somedomain.com
canvas object, allow us to add sophisticated and dynamic graphics at the cost of a few bytes of bandwidth for the text to define the objects, plus a little CPU to create in the client. Newer versions of old favorites, such as CSS, provide new visual effects without any external object or files. JavaScript libraries, even the largest, can be both compressed and modularized so that only necessary objects are downloaded and bandwidth needs are minimized.canvas object manage much of the tedious details of creativity, and all you have to do is pull together the pieces to create a more complex whole. Best of all, since both systems are based on open text in a web application, you can see how others have created effects and learn how to emulate such yourself. That's actually why I'm such a big believer in both SVG and the canvas object and have devoted so much space in the book to both.
img element. What more can you possibly learn?img element, setting the src attribute to the URL for the image:<img src="http://some.com/image.jpg" />
alt attribute:<img src="http://some.com/image.jpg" alt="Photo of the boss at company picnic" />
alt attribute supports accessibility. Screen readers, software that vocalizes what's happening on a computer screen, speak the text in this field. Providing meaningful text ensures that those dependent on such readers aren't locked out of the web page experience. Avoid repeating the name of the image file; use something meaningful, such as "Partially opened chocolate daylily." The text should be fewer than 100 characters and in whatever is the dominant language for the site. For decorative images that have no real meaning other than a visual context, use an empty string; screen readers should then just ignore the image.img attributes are style, to assign an element style or style class name, and id to identify the specific element. Older attributes such as width, height, vspace, hspace, and align are either deprecated in newer versions of HTML or not supported in XHTML—you should avoid using any of these older attributes.