スタートボタンをindex.html
クリックするとスタートボタンのあるページが消え、新しいページが開くまで他の背景は同じままです。クリックした後、次のページに移動するまでボタンを表示する方法。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<link type="text/css" href="splashcss.css" rel="stylesheet" />
</head>
<body>
<div id="container">
<div id="image"><a href="overview.html">
<img src="image/startbutton.png" onmouseover="this.src='image/Startbuttonmouse.png'" onmouseout="this.src='image/startbutton.png'">
</div>
</body>
</html>