Welcome our webmaster and SEO forum
Please enjoy the forum, contribute what you can, and wind up the Moderators!
Closed Thread
Results 1 to 3 of 3

Thread: Site with all text content contained within images

  1. #1
    kieransimkin is offline Junior Member kieransimkin is on a distinguished road
    Join Date
    Jun 2009
    Location
    Brighton, UK
    Posts
    20

    Lightbulb Site with all text content contained within images

    Hi,
    I've been working on an interesting project recently - I'm building my personal portfolio (slinq.com) and decided I wanted to use a font that isn't included in the standard set of "Web fonts". While IE supports a hacky way of sending a font file to the browser, this doesn't work in other browsers and I want my website to work in all browsers. I've therefore achieved my custom font by having a script running on the server render each fragment of text and send it to the browser as a GIF image. This is used for literally every bit of text on the site, including headings, titles etc. I am of course setting the alt tags on all of these images so that they contain the text content.

    I am also trying to get my site to rank highly in the search engines - it's a bit of an experiment; can I get a site with no text content at all to rank for my search keywords? Obviously I'm following all of the normal link building and page optimisation techniques. I'm just wondering if anyone has attempted this before and has any practical advice for me?

    One question in particular is in relationship heading tags (ie
    HTML Code:
    <h1></h1>
    etc). At the moment, my heading tags look a bit like this:

    HTML Code:
    <h2 style="background-image: url(textfrag.php?text=Heading&size=32);
    background-position:center top;background-repeat:no-repeat;text-indent:-4000px;">Heading</h2>
    In other words, I'm putting the actual text of the heading within the heading tag, but using the text-indent CSS property to move it so that it's not visible on screen, I'm then using the background-image property to reference the image containing the text fragment. I know this could potentially be considered deceptive by Google, has anyone else had any successes or failures with this technique?

    The other way that it occured to me to implement heading tags was something like this:

    HTML Code:
    <h2><img src="textfrag.php?text=Heading&size=32" alt="Heading"></h2>
    This is obviously less deceptive and cleaner code-wise but the actual text of the heading only occurs in the alt tag of the image. What are your thoughts on the relative merits of each approach?

    Check out my website to see this in action - all feedback welcome:
    http://slinq.com/ - My personal portfolio including photography of Cuckmere Haven and the South Downs (England)

    Best regards,

    ~Kieran Simkin

  2. #2
    webbizideas is offline Junior Member webbizideas is on a distinguished road
    Join Date
    Mar 2008
    Posts
    11

    Default

    Hi,

    Interesting experiment. I think it can be done. Adobe ranks #1 for "click here" in Google and that text is not mentioned anywhere in their page or code.

    Jeff

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Tags for this Thread

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124