// JavaScript Document

 function normalFontSize() {

    var p = document.getElementsByTagName('p');

    for(i=0;i<p.length;i++) {

      p[i].style.fontSize = "12px"

    }

  }

  function largeFontSize() {

    var p = document.getElementsByTagName('p');

    for(i=0;i<p.length;i++) {

      p[i].style.fontSize = "15px"

    }

  }

  function largerFontSize() {

    var p = document.getElementsByTagName('p');

    for(i=0;i<p.length;i++) {

      p[i].style.fontSize = "18px"

    }   

  }