WD 4. HTMLHead_Title,Link,Script&MetaTags

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="This is description">
    <!-- below line is to represent if people search like that as in content
    it show's our website -->
    <meta name="keywords" content="html, html tutorials, web development">
    <!-- below line decide to "INDEX", "FOLLOW" to ur website -->
    <meta name="robots" content="INDEX, FOLLOW">
    <title> Title, Link, Script and Meta tags</title>
    <!-- This is how u include external css -->
    <link rel="stylesheet" href="harry.css">

    <!-- This is how you include external JavaScript -->
    <script src="harry.js"></script>
</head>
<body>
   
</body>
</html> 

#output:


Comments

Popular posts from this blog

JAVA Lab Programs

HANGMAN GAME

WD 22. StylingLinks&Buttons