Nishinoya/photo_booth.html

63 lines
2.1 KiB
HTML
Raw Permalink Normal View History

2023-06-15 21:44:45 +09:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>二四家(にしのや)</title>
2023-06-15 23:40:46 +09:00
<link href="static/css/default.css" rel="stylesheet">
<link href="static/css/common.css" rel="stylesheet">
2023-06-15 21:44:45 +09:00
</head>
<body>
<header>
<div id="logo-container">
2023-06-15 23:40:46 +09:00
<a href="index.html"><img id="logo" src="static/images/1686296908880.jpg" alt="二四家ロゴ" width="200px"></a>
2023-06-15 21:44:45 +09:00
</div>
<nav>
2023-06-15 23:40:46 +09:00
<input type="checkbox" id="menu-toggle" class="menu-toggle">
<label for="menu-toggle" class="menu-toggle-label">&#9776;</label>
2023-06-15 21:44:45 +09:00
<ul id="menu" class="menu">
<li><a href="menu_details.html">メニューの詳細</a></li>
<li><a href="specialty.html">御来店の際のご注意</a></li>
<li><a href="class.html">2年4組について</a></li>
<li><a href="photo_booth.html">フォトブース</a></li>
</ul>
</nav>
</header>
<div id="content">
<h2>フォトブース</h2>
<p>二四家では特別な思い出を作るためにフォトブースを設置しています。</p>
<div class="photo-gallery">
2023-06-15 23:40:46 +09:00
<img src="static/images/katsuaki.jpg" alt="写真1">
<img src="static/images/1686813172839.jpg" alt="写真2">
<!-- 写真を追加するか削除 -->
<!--
2023-06-15 21:44:45 +09:00
<img src="photo3.html" alt="写真3">
<img src="photo4.html" alt="写真4">
<img src="photo5.html" alt="写真5">
<img src="photo6.html" alt="写真6">
2023-06-15 23:40:46 +09:00
-->
2023-06-15 21:44:45 +09:00
</div>
</div>
<footer>
&copy; 2023 二四家 All rights reserved.
</footer>
<script>
2023-06-15 23:40:46 +09:00
document.addEventListener('DOMContentLoaded', function() {
2023-06-15 21:44:45 +09:00
const menuToggle = document.getElementById('menu-toggle');
const menu = document.getElementById('menu');
menuToggle.addEventListener('change', function() {
if (menuToggle.checked) {
menu.style.display = 'block';
} else {
menu.style.display = 'none';
}
});
});
</script>
</body>
</html>