Really? You List A Global Capability As A Selling Point? Really?
Complete Web Site Development
Put Your Business Online!
LIG works with additional vendors to provide you a professionally designed website.
Our inhouse capabilities include:
- HTML, JAVA Script, VB Script, and ASP
- Interactive online databases
- Customized order or data collection forms
- Dynamically driven html
- Scanned and custom photos
- “Rollover” images and buttons
- Image maps
- Online Catalogs, Forums and Guestbooks
- Animated illustrations
LIG Computer can meet your online application requirements, call for more information.
Image Maps
<map></map>
“Rollover” images and buttons
- <a id="example">Cone of Silence</a
>
- #example{ background:url(picture.gif) top left no-repeat; display:block; }
- #example:hover{ background-position:bottom left; }
Oh look…three lines of code. Now that might look like something confusing, but I will probably forget that I even took the <1 minute to write those lines before I go to bed tonight.
Nothing. Special.
Oh wait… You may have noticed that I did this using a technology called Cascading Style Sheets (CSS). But their list that I showed you doesn’t say that they use CSS. They use JAVAScript. That means that instead of the three toddler-simple lines I just wrote, they’ll use something like this:
if ( document.images ){eg_on = new Image ( ); eg_off = new Image ( );eg_on.src = "images/eg_on.gif"; eg_off.src = "images/eg_off.gif";function button_on ( imgId ) { if ( document.images ) { butOn = eval ( imgName + "_on.src" ); document.getElementById(imgId).src = butOn; } } function button_off ( imgId ) { if ( document.images ) { butOff = eval ( imgName + "_off.src" ); document.getElementById(imgId).src = butOff; } } }<a href="#" onmouseout="button_off('eg'); return true" onmouseover="button_on('eg'); return true"> <img src="images/eg_off.gif" style="width: 64px; height: 64px; border: none;" alt="Button" id="eg"/> </a>
Ha. Riiiight. Oh and guess what else? JAVAscript is what they call a “client-side” scripting language. So it might not work the same on every computer, or some people might opt to turn it off. Yeah good luck with that.
WTF Mate?
Last time I checked, the ability to do something that everyone else can do is nothing special. So, saying that you can type the same code as any 13 year old is possibly the worst selling point for your business. ever. It’s like saying “My cupcakes are superior because I use cake! and I put them in cups! Huzzah!”
alright I’m done. Bitching over and out.