From [[http://www.cantoni.org/2012/03/21/duckduckgo-search-box-movable-type]]\\

A good example of how to create a '' widget ''

  -Create your own search box on the DuckDuckGo site [[http://duckduckgo.com/search_box.html]](make sure to add your domain in the Site Search field); Copy and save the iframe code snippet
  -Login to your Movable Type installation and navigate to the Widgets page
  -Create a new widget named “SearchDuckDuckGo” and set the content as shown below
  -Add the SearchDuckDuckGo widget to the appropriate widget set
  -Rebuild your blog to see the results

The Movable Type widget code will look like the following, with the <iframe> portion copied from the DuckDuckGo site:
<code>
<div class="widget-search widget">
 <h3 class="widget-header">Search</h3>
 <div class="widget-content">
  <iframe src="http://duckduckgo.com/..."></iframe>
 </div>
</div>
</code>


