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標簽。粘貼一下就可以了。