MK Web Design

4 Free Backgrounds, Back Drops, and Wallpapers

Here are four backgrounds which can be used for Wallpaper for your computer, for Photo Backgrounds or Backdrops, or any other creative ideas you may have. All backgrounds posted on this site are created by MK Web Design, free to use, royalty free, freely distributed under the GNU General Public License. Click on the thumbnail to view, right click to Save As image. All images are 1280 X 1024 pixels. background32 background33 background35 background34

Cyber Monday Deal 2011

We have reduced our prices during the week of 11/28/2011 – 12/02/2011. We are only charging a design fee of $50.00 for all sites and an annual Hosting Fee of $150 yearly. Your choice of domain is free for the lifetime of the website. The website will inlclude the following features:

  • Professional Design
  • Blog
  • Contact Forms
  • Photo Gallery
  • Website Statistics
  • Unlimited Pages
  • Share Buttons
  • Facebook Widget
  • Weekly Site Back Ups
  • Google Site Maps Auto Submission
To lock in this deal for the lifetime of the site, simply Contact Us using our Contact Form, or contact us at 727-537-0821, or complete a Free Quote from 11/28/2011 till 12/02/2011. There is no obligation and there are no hidden fees.

jQuery Cheat Sheet V1.6

jQuery Cheat Sheet v1.6

jQuery Cheat Sheet is here. This is a simple jQuery cheat sheet for you to use while coding using jQuery. I have included a PDF version which each element is clickable / linked to the jQuery website for information on which Selector, Attribute, Event, etc.. you are trying to code. I have also included JPG Image files for download but you will lose the linking functionality.

Download - jQuery_Cheat_Sheet.pdf
Downloaded 299 times Password: mkwebdesign

New Client: Exclusively Quinceaneras

MK Web Design would like to welcome the Exclusively Quinceaneras to our client list. We provided the following services:

Click on the site picture below to view a snapshot of the site and the technologies used for the site.

Exclusively Quinceaneras

New Client: Lake Park Estates Home Owners Association

MK Web Design would like to welcome the Lake Park Estates Home Owners Association to our client list. We provided the following services:

Click on the site picture below to view a snapshot of the site and the technologies used for the site.

Lake Park Home Owners Association

5 Free Backgrounds, Back Drops, and Wallpapers

Here are five free backgrounds which can be used for Wallpaper for your computer, for Photo Backgrounds or Backdrops, or any other creative ideas you may have. All backgrounds posted on this site are created by MK Web Design, free to use, royalty free, freely distributed under the GNU General Public License. Click on the thumbnail to view, right click to Save As image. All images are 1280 X 1024 pixels. background27 background28 background29 background30 background31

Free Javascript Random Text Generator

This is a simple piece of Free Javascript which will place Random Text where you want it in your webpage. Simply put the Code where you want your text to display, replacing the Your Text with the text you want to use.

Code:
<script type=”text/javascript”>
var text=new Array()
text[0]=’Your Text 1′;
text[1]=’Your Text 2′;
text[2]=’Your Text 3′;
text[3]=’Your Text 4′;
text[4]=’Your Text 5′;
text[5]=’Your Text 6′;
text[6]=’Your Text 7′;
text[7]=’Your Text 8′;
text[8]=’Your Text 9′;
text[9]=’Your Text 10′;
var xy=Math.floor(Math.random()*text.length);
document.write(text[xy]);
</script>

Example:

Free Javascript Title Bar Scroller

This is a simple piece of Free Javascript which will make the Title of your webpage in the Title Bar Scroll the site’s title. You can use this to display long Titles. Place the following code between the <head> and </head> section.

Code:
<script type=”text/javascript”>
var repeat=0 // Change this to 1 to run indefinitely, 0 Scrolls one
var title=document.title
var leng=title.length
var start=1
function titlemove() {
titl=title.substring(start, leng) + title.substring(0, start)
document.title=titl
start++
if (start==leng+1) {
start=0
if (repeat==0)
return
}
setTimeout(“titlemove()”,150) // Adjust this number to adjust the speed of the scroller (Higher is slower, Lower is Faster)
}
if (document.title)
titlemove()
</script>

Examples:

Click Here (New Window)