scratch

Tips

https://stackoverflow.com/questions/18773598/creating-folders-inside-a-github-repository-without-using-git

Reloading page (and empty cache)

  • Chrome:

    • View > Developer > Developer Tools

    • right click on the reload button and a menu will drop down

How to add a Scratch

Add Scratch (Free, browser-based visual programming language developed by the MIT Media Lab)

  1. Create a Scratch user account = https://scratch.mit.edu/join

  2. Complete another tutorial of your choice.

  3. Create something to embed (it can be from the tutorial you did or something brand new)

  4. Click "Share"

  5. add Scratch iframe to your index.html in GitHub and commit the changes

    <!DOCTYPE html>
    <html>
      <body>
        <h1>My First Heading</h1>
        <p>My first paragraph.</p>
        
        <div>
          <audio controls>
              <source src="accordion.mp3" type="audio/mpeg">
              Your browser does not support the audio tag.
          </audio>
        </div>
        
        <iframe src="https://scratch.mit.edu/projects/359828492/embed" allowtransparency="true" width="485" height="402" frameborder="0" scrolling="no" allowfullscreen></iframe>
        
      </body>
    </html>

Last updated