16 lines
		
	
	
		
			233 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			233 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
	<title>Form example</title>
 | 
						|
    <meta charset="utf-8"/>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
	<form>
 | 
						|
	   Your Number: <input type="text"> <br/>
 | 
						|
	   <input type="button" value="OK"/>
 | 
						|
	   <!--
 | 
						|
	   -->
 | 
						|
	</form>
 | 
						|
</body>
 | 
						|
</html>
 |