JSFiddle - React, Tailwind, and code Playground

by gasp10

HTML

<div style="width: 900px; float: left; margin-left: 30px;"><h1>Request a Quote</h1>
<div style="width: 300px; float: left; padding-right:30px;">
<h4 style="line-height:24px;">Please complete the form at the right to contact a representative regarding your request.</h4> 
</div>
<div style="width: 500px; float: left; padding: 20px; background-color: #eee;">
<div>
 <body>
  <form id="example" name="example">
     <b>Sensor Type</b><br>
    <select id="sensor" onchange="updateText('sensor')">
    <option value="">Select One</option>
    <option value="J">J</option>
     <option value="K">K</option>
</select>
<br>
<br>
    <b>Voltage</b><br>
<select id="voltage" onchange="updateText('voltage')">
    <option value="">Select One</option>
    <option value="120V">120V</option>
    <option value="240V">240V</option>
</select>
<br>
 <br>
<b>Amps</b><br>
<select id="amps" onchange="updateText('amps')">
    <option value="">Select One</option>
    <option value="10">10</option>
    <option value="15">15</option>
</select>
<br>
<br>
<b>Channels</b><br>
  <select id="channels" onchange="updateText('channels')">
    <option value="">Select One</option>
    <option value="1">1</option>
</select>
<br>
<br>
<b>Sensor Connector</b><br>
 <select id="connector" onchange="updateText('connector')">
    <option value="">Select One</option>
    <option value="ML2">NEMA ML2 Mini Twist Lock (Standard)</option>
</select>
<br>
<br>
    <b>Thermocouple</b><br>
 <select id="thermocouple" onchange="updateText('thermocouple')">
    <option value="">Select One</option>
    <option value="J">JType</option>
    <option value="K">KType</option>
</select>

<br>
<br>

    <br />
<input type="hidden" value="" maxlength="1" size="1" id="sensorText" /> <input type="hidden" value="" maxlength="1" size="1" id="voltageText" /> <input type="hidden" value="" maxlength="1" size="1" id="ampsText" />
<input type="hidden" value="" maxlength="1" size="1" id="channelsText" /> <input type="hidden" value=""...