Let's use a plain vanilla HTML page and add it as a Pageflakes Flake. Here are the steps: - Create a simple.html. Put some HTML code inside it.
- Add a script block like: <script id="_PAGEFLAKES_Instance" type="text/javascript"></script>
- Copy the simple.html to a webserver that is publicly available on the web.
- Go to www.pageflakes.com. Click "Add Content" and enter the address of the page.
- 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... |