---------------------------------------------------------------------------------------------
<html><!--starting tag of html-->
	<head><!--used for meta tag-->
		<title><!--used for title of page-->
			form concept
		</title>
	</head>
		<body><!--is container-->
		form	<br>
		<form>
			input name:<input type="text" placeholder="type your name" maxlength="10" size="20">
			<!--type text creates a box
				placeholder puts the text inside the box
				maxlength takes the character maximum 10
				size:it creates the box having 20 length
			-->
		</form><!--closing part of form-->
		</body>
</html>
