Search
 
SCRIPT & CODE EXAMPLE
 

HTML

group inputs html

<form>
  <fieldset>
     <legend>1st field set:</legend>
     Field one:<br>
     <input type="text"><br>
     Field two:<br>
     <input type="text"><br>
  </fieldset><br>
  <fieldset>
     <legend>2nd field set:</legend>
     Field three:<br>
     <input type="text"><br>
     Field four:<br>
     <input type="text"><br>
  </fieldset><br>
  <input type="submit" value="Submit">
</form>
Comment

How to group form inputs

<fieldset>
<legend>I want to receive</legend>
	<div>
		<input type="checkbox" name="newsletter" id="check_1">
    <label for="check_1">The weekly newsletter</label>
	</div>
	[…]
</fieldset>
Comment

How to group form inputs

<fieldset>
<legend>Output format</legend>
  <div>
    <input type="radio" name="format" id="txt" value="txt" checked>
    <label for="txt">Text file</label>
  </div>
  <div>
    <input type="radio" name="format" id="csv" value="csv">
    <label for="csv">CSV file</label>
  </div>
  […]
</fieldset>
Comment

groups in a form

<fieldset>
  <legend>Don't you love HTML?</legend>
  <input type="radio" name="yesno" id="yes"/>
  <label for="yes">Yes</label>
  <input type="radio" name="yesno" id="no"/>
  <label for="no">No</label>
Comment

PREVIOUS NEXT
Code Example
Html :: ngb-tab html content 
Html :: doc file reader html 
Html :: how to create html file in android programmatically 
Html :: pass parameter 2 html button 
Html :: how to do that if src is invalid it wont show error 
Html :: how to show a html page only once 
Html :: Metabox dos 
Html :: php if statement not working 
Html :: Save free form description along with spaces and line breaks 
Html :: html picture unpressable 
Html :: bootstrap flex box 
Html :: do not translate page html 
Html :: Make Input Group Responsive Input Append (Search And Dropdown With Buttons) 
Html :: make linear diagram html 
Html :: livewire wire:target multi target 
Html :: html textarea placeholder multiple lines 
Html :: html detection vpn script 
Html :: visa card 
Html :: setup webfont with cdn font awesome 
Html :: render navbar links/html link in div iframe without loading an entire page 
Html :: mdboostrap lazy loading 
Html :: in line a frame animation 
Html :: number paragraphs in html 
Html :: how to add map in html 
Html :: change td color html 
Html :: upload html file to wordpress 
Css :: placeholder font size 
Css :: css resize checkbox 
Css :: remove underline hover css 
Css :: styling scrollbar css 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =