24web/gallery.html

30 lines
969 B
HTML
Raw Normal View History

2024-06-25 07:00:25 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Image Gallery</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>My Image Gallery</h1>
</header>
<main>
<div class="controls">
<label for="imageInput" class="custom-file-upload">
Select Image
</label>
<input type="file" id="imageInput" accept="image/*">
<span id="fileName"></span>
<button id="addImageButton">Add Image</button>
</div>
<section class="gallery" id="gallery">
<!-- 이미지가 여기에 추가됩니다 -->
</section>
</main>
<script src="script.js"></script>
</body>
</html>