Skip to content

Commit baec3a4

Browse files
committed
Changed files to show whether the page dealt with hello.html or index.html
1 parent 1ba3363 commit baec3a4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

sites/frontend/basic_javascript.step

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ end
66
steps do
77

88
step do
9-
message "CSS lets you make your pages look good, but it's **JavaScript** that makes most web pages interactive. Add a script tag to your page so you can get started writing some JavaScript. At the very bottom of your document, under your paragraphs, add this:"
9+
message "Now that we have completed the challenges for your index.html and related CSS files, we will be looking back at your hello.html file."
10+
message "CSS lets you make your pages look good, but it's **JavaScript** that makes most web pages interactive. Pull up your hello.html file again. Add a script tag to your page so you can get started writing some JavaScript. At the very bottom of your document, under your paragraphs, add this:"
1011

1112
source_code :html, <<HTML
1213
<script type="text/javascript">

sites/frontend/jquery.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ end
66
steps do
77

88
step do
9-
message "First, let's include the jQuery code in our HTML file, so we can start working with it. Google and Microsoft both host public copies of jQuery that you can link to, so you don't even need to download it. (The browser can download files from other sites, if you include links to them.) Add this line inside the `head` of your document:"
9+
message "First, let's include the jQuery code in our index.html file (not the hello.html file), so we can start working with it. Google and Microsoft both host public copies of jQuery that you can link to, so you don't even need to download it. (The browser can download files from other sites, if you include links to them.) Add this line inside the `head` of your document:"
1010
source_code :html, <<-HTML
1111
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" type="text/javascript"></script>
1212
HTML

0 commit comments

Comments
 (0)