0% found this document useful (0 votes)
30 views

Document : HTML Lang Charset Name Content Name Content Name Content Name Content

This document shows the basic structure of an HTML document, including how to include external CSS and JavaScript files. It contains boilerplate HTML code with <head> and <body> sections, along with <meta> tags for description, keywords, and robots. External stylesheets and scripts are linked using <link> and <script> tags.

Uploaded by

Debabrata Saha
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views

Document : HTML Lang Charset Name Content Name Content Name Content Name Content

This document shows the basic structure of an HTML document, including how to include external CSS and JavaScript files. It contains boilerplate HTML code with <head> and <body> sections, along with <meta> tags for description, keywords, and robots. External stylesheets and scripts are linked using <link> and <script> tags.

Uploaded by

Debabrata Saha
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

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" >
    <meta name= "keywords" content="html, web development" >
    <meta name= "robots" content="NOINDEX, NOFOLLOW" >
    <title>Document</title>
    <!-- This is how you 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>

<!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" >
    <meta name= "keywords" content="html, web development" >
    <meta name= "robots" content="NOINDEX, NOFOLLOW" >
    <title>Document</title>
    <!-- This is how you 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>

You might also like