Mercurial > open-web-challenges
annotate 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 |
rev | line source |
---|---|
0 | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
4 <head> | |
5 <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
6 <link rel="stylesheet" type="text/css" media="all" | |
7 href="index.css" /> | |
8 <title>Atul's Open Web Challenges</title> | |
9 <base target="_new"/> | |
10 </head> | |
11 <body> | |
12 <div id="current-challenge"> | |
13 </div> | |
14 <div id="messages"> | |
15 <div id="msg-show-first-hint">Click here to display a hint.</div> | |
16 <div id="msg-show-another-hint">Click here to display another hint.</div> | |
3
9b9d095c5d2c
Changed some CSS styles, other cosmetic issues.
Atul Varma <varmaa@toolness.com>
parents:
0
diff
changeset
|
17 <div id="msg-no-more-hints">All hints are displayed below.</div> |
0 | 18 <div id="msg-success">You got it!</div> |
19 </div> | |
20 <div id="challenge-1" class="challenge"> | |
21 <div class="content"> | |
22 <p>Use <a href="http://www.getfirebug.com">Firebug</a> to change | |
23 the text below to say "hello world" instead of "hai2u".</p> | |
24 <tt>hai2u</tt> | |
25 </div> | |
26 <div class="hints"> | |
27 <p>You can enable Firebug by going to the "View" menu and | |
28 selecting "Firebug".</p> | |
29 <p>You may have to enable Firebug to work with this site.</p> | |
30 <p>You can inspect any visual element on a page by clicking | |
31 "Inspect" at the top of the Firebug panel and then moving your | |
32 mouse to the part of the page you're interested in.</p> | |
33 <p>It's easy to "live edit" a page through Firebug—just | |
34 try clicking on any content you want to edit in the "HTML" | |
35 tab!</p> | |
36 </div> | |
37 <div class="validator"> | |
38 function(query) { | |
39 return query.find("tt").text() == "hello world"; | |
40 } | |
41 </div> | |
42 </div> | |
43 </body> | |
44 <script src="jquery.js"></script> | |
45 <script src="open-web-challenges.js"></script> | |
46 </html> |