GWT/GXT のプロジェクトで。
project.html で。
ファビコンを追加してボディの色を変えて画像も入れてみました。
しかし、Web プロジェクトを実行すると。ボディカラー、ファビコン、画像の変化が見られません。
私の Web プロジェクトは、RootPanel の中央にあるログイン ページから開始します。
HTMLに画像とFeviconを追加したい
私のテストページtest.htmlでは、ファビコンと画像を表示できます。
gwt project.html
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>My Page</title>
<link rel="icon" type="image/png" href="fevicon.png" />
<link rel="stylesheet" type="text/css" href="gxt/css/gxt-all.css" />
<link rel="stylesheet" type="text/css" href="project.css" />
</head>
<body style="background-color:d8d8d8;>
<img class="normal" src="main.png" width="700" height="80" />
<script language='javascript' src='project/project.nocache.js'></script>
<iframe src="javascript:''" id="__gwt_historyFrame" style="position:absolute;width:0;height:0;border:0"></iframe>
</body>
</html
>