FOOTER LINK EXAMPLE
Run
<!DOCTYPE html> 
<html> 
	<head> 
		<title>HTML footer Tag</title> 
		<style> 
			a { 
				font-size:25px; 
				text-decoration:none; 
			} 
			p { 
				font-size:25px; 
			} 
		</style> 
	</head> 
	<body> 
		<footer> 
				<p> 
					<a href= "https://www.studytonight.com/about/">About Us</a> | 
					<a href= "https://www.studytonight.com/contact/">Contact</a>
				</p> 
			<p>&copy; Studytonight. Rights Reserved.</p> 
		</footer> 
	</body> 
</html>