The use of Java Script tag <body> ; <body> ট্যাগের মাঝে জাভা স্ক্রীপ্ট ব্যবহার করা~~Hedaet Forum~~


Email: Password: Forgot Password?   Sign up
Are you Ads here? conduct: +8801913 364186

Forum Home >>> Java Script >>> The use of Java Script tag <body> ; <body> ট্যাগের মাঝে জাভা স্ক্রীপ্ট ব্যবহার করা

Tamanna
Modarator Team
Total Post: 7639

From:
Registered: 2011-12-11
 

The use of Java Script tag <body>

Java scripts on a web site loaded soon see, <body> tag is to use the Java scripts. Such as:
<html>
<head>
</ head>
<body>
<script type="text/javascript">
<! -
document.write ("Hello World")
/ / ->
</ script>
<p> This is web page body </ p>
</ body>
</ html>

As can be seen in the following output:
Hello World

This is web page body

=======
<body> ট্যাগের মাঝে জাভা স্ক্রীপ্ট ব্যবহার করা

কোন ওয়েব সাইট লোড হওয়া মাত্রই জাভা স্ক্রীপ্ট চালু দেখতে চাইলে, <body> ট্যাগের মাঝে জাভা স্ক্রীপ্ট ব্যবহার করতে হয়। যেমন:
<html>
<head>
</head>
<body>
<script type="text/javascript">
<!--
document.write("Hello World")
//-->
</script>
<p>This is web page body </p>
</body>
</html>

তখন নিচের মতো আউটপুট দেখা যাবে:
Hello World

This is web page body