HTML Tutorial: Title, Script, Link & Meta Tags
<!--open it using visual studio code
create a folder than create 3 file in the folder named them
.css & .js & .html
than open html file and put this code.-->
<!DOCTYPE html>
<!--our HTML code start here-->
<html lang="en">
<!--our head tag start here-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="this is description">
<meta name="keywords" content="html, html tutorials, web development">
<meta name="robots" content="INDEX, FOLLOW">
<title>this is title</title>
<!-- THIS IS HOW YOU INCLUDE EXTERNAL CSS -->
<link rel="stylesheet" href="raaz.css">
<!-- THIS IS HOW YOU INCLUDE JAVA SCRIPT -->
<script src="raaz.js"></script>
</head>
<!--our body tag start here-->
<body>
hii world
<div></div>
</body>
</html>
Comments
Post a Comment