html, body {
  height: 100%;
  width: 100%;
}
function setup () {
  createCanvas(windowWidth, windowHeight)
  noLoop()
}

function draw () {
  const maxWidth = windowWidth
  for (let i = 0; i < 100; i ++) {
    let randomNumber = random(maxWidth)
    let randomWidth = random(10)
    strokeWeight(randomWidth)
    line(0, i * 30, 10 + randomNumber, 0)
  }
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/p5.min.js