5
JavaScript Image Swap
Posted in JavaScript Tutorials by kdwhd
2
JavaScript Image Swap
This easy to follow inline JavaScript is a great way to create click-to-enlarge (or mouse over) image galleries. Or to display several pictures without loading your Web page full of images.
Besides the main image, you will want to create a second image to represent the main image. This can either be a graphic, or a thumbnail
more
5
JavaScript Rollover Image Buttons
Posted in JavaScript Tutorials by kdwhd
0
JavaScript Rollover Image Buttons
Here is an easy way to add rollover buttons without a lot of heavy JavaScript. As long as the images are kept small, this is fast loading and works great in all browsers. It is VERY important when editing this code that you do it in a program that does not insert extra spaces or quotes.
more
5
HTML Backgrounds
Posted in HTML Tutorials by kdwhd
0
HTML Backgrounds
Background Color
By using the style attribute with the background-color property, you can add color to about any HTML element.
1
<p style="background-color: #f9f581;">Content goes here.</p>
Content goes here.
Using the <div> element, you have the ability to add background color to a group of elements.
1
2
3
4
<
more
5
HTML Lists
Posted in HTML Tutorials by kdwhd
0
HTML Lists
Traditionally, lists came in two flavors: unordered lists (<ul>), and ordered lists (<ol>). With HTML 4.01 you only need to use <ul>. You can specify the marker using the style attribute. Default spacing does differ among browsers. Use the <ul> tag to begin a list. Place the <li></
more
5
HTML Images
Posted in HTML Tutorials by kdwhd
2
HTML Images
Use the <img> tag to place an image on your Web page. The src="" attribute stands for source or URL of the image. For an image to be seen on the Web, it must be upload to your host. The alt="" attribute specifies alternate text to be displayed if for some reason
more





Follow Us