Created
February 5, 2017 04:07
-
-
Save alexpelan/432e98aedd06f359a9e03c7cb7d65228 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=432e98aedd06f359a9e03c7cb7d65228
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Parts of Speech: We Do</title> | |
| </head> | |
| <body> | |
| <h1 id = "header">This is a page about the parts of speech</h1> | |
| <h1 id = "noun"> This is a noun --> </h1> | |
| <h1 id = "adj"> This is a adjective --> </h1> | |
| <div id ="sentence"></div> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"enabledLibraries":["jquery"]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| WE DO: Variable & jQuery practice | |
| */ | |
| // Variables | |
| // Create variables called noun and adjective. Set noun to a string that is a noun. Set adjective to a string that is an adjective. | |
| // Append | |
| // Append our noun variable to the first h1 tag on this page (hint: jQuery!)? | |
| // Challenge #1 | |
| // append our adjective variable to the first h1 tag on this page. | |
| // Challenge #2 | |
| // Add an <h1> tag to the html for a verb, then repeat this process for a verb | |
| // Challenge #3 | |
| // using jQuery, write a sentence using the noun and adjective you created above. Place this sentence in the div with the ID sentence. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #header{ | |
| color: red; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment