Skip to content

Commit

Permalink
Added Project 9 projectnotes index file
Browse files Browse the repository at this point in the history
  • Loading branch information
lisaychuang committed Apr 29, 2018
1 parent b52106f commit 180076b
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions 09 - Dev Tools Domination/index-projectnotes.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Console Tricks!</title>
</head>
<body>

<p onClick="makeGreen()">×BREAK×DOWN×</p>

<script>
const dogs = [{ name: 'Snickers', age: 2 }, { name: 'hugo', age: 8 }];

function makeGreen() {
const p = document.querySelector('p');
p.style.color = '#BADA55';
p.style.fontSize = '50px';
}

// Regular

// Interpolated

// Styled

// warning!

// Error :|

// Info

// Testing

// clearing

// Viewing DOM Elements

// Grouping together

// counting

// timing

</script>
</body>
</html>

0 comments on commit 180076b

Please sign in to comment.