Introduction to Technology for Musicians
old
old
  • Introduction to Technology for Musicians
  • 10 Units
    • 1. Computer Hardware
      • Assignment (computer hardware)
    • 2. Software
      • Assignment (software)
    • 3. Networks
      • Assignment (networks)
      • During Class
    • 4. Analog Audio
      • Assignment (analog synth)
      • Assignment (mic differences experiment)
    • 5. Digital Audio
      • Assignment (podcast)
      • Assignment (audio mixing)
      • Assignment (stereo recording)
    • 6. Photography & Film (analog)
    • 7. Photography/Graphics & Video (digital)
      • Assignment (photography)
      • Assignment (2d graphics)
      • Assignment (3d graphics)
      • Assignment (multi-camera editing)
      • Assignment (music video)
      • Assignment (score following video)
      • Video Recording
        • Audition/Screening Video (1 camera)
        • Multicam Video Recording (3+ Cameras)
        • Multicam Video Editing (2+ Cameras)
        • Live Streaming Video (+ Audio)
      • Graphics
        • Vector (2D & 3D) Activity
    • 8. Notation (MIDI) & Virtual Instruments
      • Assignment (notation)
        • MuseScore Reference
        • Dorico Reference
    • 9. Electroacoustic Music
    • 10. Music Rights
      • Copyright & Licensing
      • Copyright & Licensing Resources
  • Questions
  • MUS1331 Final Exam Questions
  • Appendix
    • Software Suggestions
    • Hardware Suggestions
    • Audio Recording
  • Under Construction
  • MIDI Exercise
  • Introduction to Notation Software Exercise
  • Email Etiquette
  • iPad
  • Simple Programming Problems
  • Analogy
  • Spring2021 purchase requirements
  • Lesson Plans
    • Class01
    • Class02
    • Class03
    • Class04
    • Class05
    • Class06
    • Class07
    • long video
    • scratch
Powered by GitBook
On this page

Was this helpful?

Edit on Git
  1. 10 Units
  2. 3. Networks

During Class

Add Styling (we'll do this during our class meeting)

  1. create another new file in the same directory (folder) as your index.html file

  2. name the file style.css

  3. add the following code to the style.css file

    h1 {
      font-size: 10em; /* 1em = 12pt = 16px */
      font-family: "Comic Sans MS", cursive, sans-serif;
      color: blue
    }
    
    p {
      font-family: Courier, Monaco, monospace;
      color: brown
    }
  4. add a header in your index.html file so that it knows where to get the styling code

    <!DOCTYPE html>
    <html>
      
      <head>
        <title>benjohansen</title>
        <meta charset="utf-8" />
        <link rel="stylesheet" href="style.css?version=2" />
      </head>
    
      <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>
PreviousAssignment (networks)Next4. Analog Audio

Last updated 4 years ago

Was this helpful?