JSP設定網站favicon.ico
阿新 • • 發佈:2018-11-23
favicon.ico中文名稱是網站頭像。在我們的網站建設中,為網站打造一個契合網站主題的個性化標誌則是必需的,這直接關係到能否成功地塑造網站的品牌。這從某些角度看仍在網站推廣的範疇之內,而欲取得成功,不僅包括良好的頁面設計、令人印象深刻的網站Logo,也包括favicon
關鍵程式碼
<
link
rel
=
"shortcut icon"
href
=
"favicon.ico"
/>
線上製作favicon.ico
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <link rel="shortcut icon" href="${pageContext.request.contextPath }/resources/images/favicon.ico" type="image/x-icon" > </head> <body> <form action="${pageContext.request.contextPath }/frontUser/select" method="post"> 輸入使用者名稱:<input type="text" name="uname"/><br> <input type="submit" value="提交"/> </form> </body> </html>