Skip to content

Instantly share code, notes, and snippets.

@alexpelan
Created February 5, 2017 04:07
Show Gist options
  • Select an option

  • Save alexpelan/432e98aedd06f359a9e03c7cb7d65228 to your computer and use it in GitHub Desktop.

Select an option

Save alexpelan/432e98aedd06f359a9e03c7cb7d65228 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=432e98aedd06f359a9e03c7cb7d65228
<!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>
{"enabledLibraries":["jquery"]}
/*
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.
#header{
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment