SECTION 1
Run
<!DOCTYPE html> 
<html> 
	<head> 
		<title>Example for Section Tag</title> 
	</head> 
	<body> 
		<section> 
			<h1>StudyTonight</h1> 
			<p>It is a best place to Learn coding online.You can Learn through tutorials provided on our website.</p> 
		</section> 
		<section> 
			<h1>JavaScript</h1> 
			<p>JavaScript is a client scripting language which is used for creating web pages. It is a standalone language developed in Netscape. It is used when a webpage is to be made dynamic </p> 
		</section> 
		<section> 
			<h1>HTML</h1> 
			<p>Hypertext Markup Language is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript.</p> 
		</section> 
	</body> 
</html>