Back to my pageFAQ | Developer Forum | Contact

Simple Flake 1 - Simple1.html

Let's use a plain vanilla HTML page and add it as a Pageflakes Flake. Here are the steps:

  1. Create a simple.html. Put some HTML code inside it.
  2. Add a script block like: <script id="_PAGEFLAKES_Instance" type="text/javascript"></script>
  3. Copy the simple.html to a webserver that is publicly available on the web.
  4. Go to www.pageflakes.com. Click "Add Content" and enter the address of the page.
  5. Pageflakes will detect the page as regular webpage. Click on the title link to add the page/module to the page.

This is the result:

And here's the source code of the simple page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Sample Page</title>
<script id="_PAGEFLAKES_Instance" type="text/javascript"></script> </head> <body> Hi This is my first page inside pageflakes! </body> </html>

You can use HTML, but we we recommend using XHTML.

Now let's add some JavaScript to our example...