Web page structure
What you will learn here about web page
- Web page structure
Web page structure
The simple web page structure is given below.
why we are learning web page structure?
The primary job of browser is to render the web page. The webpage is made of HTML, CSS, JavaScript etc. The Web page structure will tell us where we can add HTML, CSS and JavaScript in web code.
In HTML code JavaScript code is added between the <script> </script> tag.
<html>
<head>
<style>
</style>
<script>
</script>
</head>
<body>
</body>
</html>