Mercurial > open-web-challenges
view index.html @ 3:9b9d095c5d2c
Changed some CSS styles, other cosmetic issues.
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Mon, 30 Mar 2009 16:53:35 -0700 |
parents | 4845b395874c |
children | 24152e820405 |
line wrap: on
line source
<!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" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" media="all" href="index.css" /> <title>Atul's Open Web Challenges</title> <base target="_new"/> </head> <body> <div id="current-challenge"> </div> <div id="messages"> <div id="msg-show-first-hint">Click here to display a hint.</div> <div id="msg-show-another-hint">Click here to display another hint.</div> <div id="msg-no-more-hints">All hints are displayed below.</div> <div id="msg-success">You got it!</div> </div> <div id="challenge-1" class="challenge"> <div class="content"> <p>Use <a href="http://www.getfirebug.com">Firebug</a> to change the text below to say "hello world" instead of "hai2u".</p> <tt>hai2u</tt> </div> <div class="hints"> <p>You can enable Firebug by going to the "View" menu and selecting "Firebug".</p> <p>You may have to enable Firebug to work with this site.</p> <p>You can inspect any visual element on a page by clicking "Inspect" at the top of the Firebug panel and then moving your mouse to the part of the page you're interested in.</p> <p>It's easy to "live edit" a page through Firebug—just try clicking on any content you want to edit in the "HTML" tab!</p> </div> <div class="validator"> function(query) { return query.find("tt").text() == "hello world"; } </div> </div> </body> <script src="jquery.js"></script> <script src="open-web-challenges.js"></script> </html>