Engineering Design Process

by wizviper

HTML

<div>
<h1>
The Engineering Design Process
</h1>
<button id='startbutton'>
Start
</button>
</div>

CSS

h1 {
  text-align:center;
}

button {
  width:50vw;
  height:15vh;
  text-align:center;
}
div {
  display: flex;
  justify-content: center;
  flex-wrap:wrap;
}

JavaScript

document.getElementById('startbutton').addEventListener