HTML
CSS
JavaScript
Tutorials
C is a very powerful and widely used language. It is used in many scientific programming situations. It forms (or is the basis for) the core of the modern languages Java and C++. It allows you access to the bare bones of your computer.C++ is used for operating systems, games, embedded software, autonomous cars and medical technology, as well as many other applications. Don't forget to visit this section...
CSS in HTML
Welcome to Sharp Tutorials for Web Designing. Here is tutorial step by step with simple and easy to understand examples.
Introduction to Web Design
Java Script is a scripting language so it can be embedded in HTML page with the help of <script> tag.
Java Script used for client side validation in web technology like PHP , Java , Python .net applications .
External Java script files may be created with extension (.js ) . External JS file may contain only JS code while HTML page may contain both HTML and Java Script in <script> tag.
<html>
<title>JS introduction</title>
<head>
<script>
document.write("this is js print ");
</script>
</head>
<body>
</body>
</html>
How to write JS in an HTML page
Save above file with extension .html eg. jsintro.html. Output can be displayed in any of the browser eg google chrome , internet explorer, Firefox or safari etc.
document.write() print the message in the HTML page so output will be as following.