Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<select name="pregnant">
<option value=""/>
<option value="Yes">
<xsl:if test="preganant = 'Yes'">
<xsl:attribute name="selected">selected</xsl:attribute>
</xsl:if>
</option>
<option value="No">
<xsl:if test="preganant = 'No'">
<xsl:attribute name="selected">selected</xsl:attribute>
</xsl:if>
</option>
</select>