Code to create a website about nature photography gallery
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nature Photography</title>
<style>
body {background: #e8f5e9; font-family: Verdana;}
h1 {text-align: center; color: #388e3c;}
.gallery {display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 20px;}
.gallery img {width: 300px; height: 200px; object-fit: cover; border-radius: 10px; box-shadow: 0 3px 8px rgba(0,0,0,0.3);}
</style>
</head>
<body>
<h1>🌳 Nature Photography</h1>
<div class="gallery">
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6d/Misty_forest.jpg">
<img src="https://upload.wikimedia.org/wikipedia/commons/4/4e/Beach_Sunset.jpg">
<img src="https://upload.wikimedia.org/wikipedia/commons/5/5b/Mountain_Lake.jpg">
</div>
<footer style="background:#0d47a1; color:white; text-align:center; padding:25px; font-size:22px;">
© 2025 <a href="https://freecodesforwebsites.blogspot.com/" target="_blank" style="color:#bbdefb; text-decoration:none;">Free Codes for Websites</a> | All rights reserved.
</footer>
</body>
</html>
Comments
Post a Comment