HTML/CSS/Basic Tags/head

Материал из Web эксперт
Перейти к: навигация, поиск

"head" creates the header section of an HTML document

    
<html>
<head>
    <title>head element example</title>
    <link rel="stylesheet" type="text/css" href="http://www.wbex.ru/style/jss.css">
    <meta name="description" CONTENT=" Java examples (example source code) Organized by topic " />
    <meta name="keywords" CONTENT=" Java examples (example source code) Organized by topic "/>
    <meta http-equiv="content-style-type" content="text/css"/>     
</head>
<body>This is the content of the page</body>
</html>