Welcome to zoneverte.org, an Information Services Consultancy designed to help your business make the most of the internet.

Iconography

I used a quick python script to generate the icon for this website, after drawing out the intended result on a sheet of graph paper it was quite simple to stripe in the pixels making up the image and save it as a 16 by 16 pixel .png"

here's the code (requires PIL ):

#!/usr/bin/env python
 
import Image
 

white = (255,255,255)
green = (0,128,0)
 
def stripe(start,stop,y):
    for x in range(start,stop+1):
        img.putpixel((x,y),green)
 
img = Image.new('RGB',(16,16),white)
 
for x in range(1,15):
    for y in range(1,15):
        img.putpixel((x,y),white)
         
stripe(3,13,2)
stripe(2,12,3)
stripe(10,11,4)
stripe(9,10,5)
stripe(8,9,6)
stripe(3,13,7)
stripe(2,12,8)
stripe(6,7,9)
stripe(5,6,10)
stripe(4,5,11)
stripe(3,13,12)
stripe(2,12,13)
 
img.save('icon.png')

Once you've generated the icon use png2ico to make it a regular .ico file rename it to favicon.ico and use
<link rel="icon" href="/favicon.ico">
<link rel="shortcut icon" href="/favicon.ico">
In the <head> segment of your pages to make it display.