JSFiddle - React, Tailwind, and code Playground

by idygress

HTML

<html>
<header>
  <style>
    .orgHeader {
      margin-left:50%; width:50%;
    }

    .volSection {
       border:2px #5c8de8 solid;
       padding:20px;
    }
    .volHeader {
      margin-left:40px;
    }

    .qHeader {
      padding:20px 0;
    }

    .questionnaires {
      padding-left:40px;
    }

    .questions { 
      font-weight:900;
    }

    .answers { 
      padding-left:20px;
    }

    .idSection {
      padding-left:40px;
      min-height:500px;
    }
    .idImages {
      border:2px black solid;
      min-width:300px;
      min-height:300px;
      max-width: 500px;
      float:left;
      margin-left:40px;
    }
  </style>
</header>
<body>

<DIV class="orgHeader">
  <H1> {ORG NAME} </H1>
</DIV>

<DIV class="volSection">
  <DIV class="volHeader">
    <H2> {VOLUNTEER NAME} </H2>
    <p>
    EMAIL: {email}
    </p>
    <p>
    PHONE: {phone}
    </p>
  </DIV>
  <DIV class="questionnaires qHeader">
    <H3>{QUESTIONNAIRE NAME}</H3>
    <p class="questions">
      {question}
      </p>
      <p class="answers">
      {answer}
      </p>
    </DIV>
  <DIV class="idSection">
    <H3>ID Images</H3>
    <img src="" class="idImages"/>
    <img src="" class="idImages"/>
  </DIV>  
</DIV>

</body>
</html>