HTML head 元素

<head> 元素包含了所有的头部标签元素。
可以添加在头部区域的元素标签为: <title>, <style>, <meta>, <link>, <script>

实例

meta

<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
<meta name="description" content="免费 Web & 编程 教程">
<meta name="author" content="Runoob">
<meta http-equiv="refresh" content="30">

link

<link rel="stylesheet" type="text/css" href="mystyle.css">

style

<style type="text/css">
body {background-color:yellow}
p {color:blue}
</style>

script

<script type="text/javascript">
        function show() {
            alert('Hello ');
        }
</script>
posted @ 2021-06-21 08:02  胡勇健  阅读(67)  评论(0)    收藏  举报