JSFiddle - React, Tailwind, and code Playground
by Alex Azuero
HTML
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<scrip>
</scrip>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Inputs</h1>
</div>
<div data-role="main" class="ui-content">
<form method="post" action="">
<label for="points">Points:</label>
<input type="range" name="points" id="points" value="50" min="0" max="100" data-popup-enabled="true"
data-highlight="true">
<input type="submit" data-inline="true" value="Submit">
</form>
</div>
<div data-role="main" class="ui-content">
<form method="post" action="">
<fieldset data-role="controlgroup">
<legend>Choose your gender:</legend>
<label for="male">Male</label>
<input type="radio" name="gender" id="male" value="male">
<label for="female">Female</label>
<input type="radio" name="gender" id="female" value="female">
</fieldset>
<input type="submit" data-inline="true" value="Submit">
</form>
</div>
<div data-role="main" class="ui-content">
<form method="post" action="">
<fieldset data-role="controlgroup" data-type="horizontal"><!--horizontal-->
<legend>Choose your gender:</legend>
<label for="male2">Male</label>
<input type="radio" name="gender" id="male2" value="male">
<label for="female2">Female</label>
<input type="radio" name="gender" id="female2" value="female">
</fieldset>
<input type="submit" data-inline="true" value="Submit">
<input type="reset" data-inline="true" value="Reset">
</form>
<form method="post" action="demoform.asp">
<fieldset data-role="controlgroup">
<legend>Choose as many favorite...