head.html //File Name
<html>
<head>
<script type = "text/javascript">
function abc()
{
document.write("CareerRide Info");
}
</script>
</head>
<body>
Click the button
<input type=button onclick="abc()" value="Click">
</body>
</html>
body.html //File Name
<html>
<body>
<script type="text/javascript">
document.write("CareerRide Info");
</script>
</body>
</html>
external.html //File Name
<html>
<body>
<script type="text/javascript" src="abc.js">
</script>
</body>
</html>
abc.js //External File Name
document.write("CareerRide Info");