1. 网页设计中<head> </head>
1、定义
<head> 标签用于定义文档的头部,它是所有头部元素的容器。<head> 中的元素可以引用脚本、指示浏览器在哪里找到样式表、提供元信息等等。
文档的头部描述了文档的各种属性和信息,包括文档的标题、在 Web 中的位置以及和其他文档的关系等。绝大多数文档头部包含的数据都不会真正作为内容显示给读者。
下面这些标签可用在 head 部分:<base>, <link>, <meta>, <script>, <style>, 以及 <title>。
<title> 定义文档的标题,它是 head 部分中唯一必需的元素。
提示:应该把 <head> 标签放在文档的开始处,紧跟在 <html> 后面,并处于 <body> 标签或 <frameset> 标签之前。
提示:请记住始终为文档规定标题!
2、示例
<!doctypehtml>
<htmllang="zh-CN">
<head>
<metacharset="UTF-8">
<metaname="viewport"content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
<metaname="viewport"content="uc-fitscreen=no">
<metaname="format-detection"content="telephone=no">
<metaname="apple-mobile-web-app-capable"content="yes">
<metaname="apple-mobile-web-app-status-bar-style"content="black">
<metaname="apple-mobile-web-app-title"content="金融APP">
<metaname="screen-orientation"content="portrait">
<metaname="-tc-verification"content=""/>
<title>首页</title>
<metaname="keywords"content="关键词">
<metaname="description"content="描述">
<scripttype="text/javascript"src="js/first.js"></script>
<linkhref="css/index1080.css"rel="stylesheet"type="text/css">
<linkrel="stylesheet"href="css/idangerous.swiper.css"/>
<scriptsrc="js/jquery-2.1.3.min.js"></script>
<scripttype="text/javascript"src="js/common.js"></script>
<scripttype="text/javascript"src="js/cordova-2.6.0.js"></script>
</head>
2. 网站首页网站首页HTML代码的HEAD标签在哪
你先打开你的网站源文件,源代码。直接搜索,或者找一下,开头是<html>然后就是<head>,在<head>之后,</head>之前都是head标签。粘贴一下就可以了。