duckbehaviorjournal/papers/the-subtle-art-of-puddle-jumping.html
Kumi d1d177b20d
feat: add initial journal website with articles
This commit introduces the initial version of the Duck Behavior Journal website. Key features include:

- A homepage with navigation and featured articles.
- Detailed guidelines section for manuscript submission.
- Separate pages for featured articles such as "The Subtle Art of Puddle Jumping," "Quackonomics," and "Nibbling Nuisances."
- Integration of Bootstrap and jQuery for enhanced UI and UX.
- Custom styles defined in `styles.css`.
- Static assets like images for the logo, hero section, and articles.

This setup establishes the foundational structure of the journal's website, setting the stage for future content updates and enhancements.
2024-06-19 16:11:38 +02:00

170 lines
7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
The Subtle Art of Puddle Jumping: An Ethological Study of Anas
platyrhynchos - Duck Behavior Journal
</title>
<link href="../assets/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="../styles.css" />
</head>
<body>
<!-- Header -->
<header class="bg-light py-3">
<div class="container d-flex justify-content-between align-items-center">
<a href="../index.html">
<img
src="../logo.png"
alt="Duck Behavior Journal Logo"
class="logo"
/>
</a>
<nav>
<ul class="nav">
<li class="nav-item"><a class="nav-link" href="/">Home</a></li>
<li class="nav-item"><a class="nav-link" href="/">About</a></li>
<li class="nav-item"><a class="nav-link" href="/">Articles</a></li>
<li class="nav-item">
<a class="nav-link" href="/">Submission Guidelines</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/">Editorial Board</a>
</li>
<li class="nav-item"><a class="nav-link" href="/">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Paper Content -->
<section class="container my-5">
<div class="row">
<div class="col-lg-8 mx-auto">
<h1 class="display-4">
The Subtle Art of Puddle Jumping: An Ethological Study of Anas
platyrhynchos
</h1>
<p class="text-muted">
Dr. Quackmore Ducksworth, PhD; Mallory Featherstone, MSc; Prof.
Waddle Paddleson, DSc
</p>
<p>
<strong>Note:</strong> The full paper is available for download for
subscribers only.
</p>
<p>
<strong>Abstract:</strong> This study investigates the intricate and
often overlooked behavior of puddle jumping in the mallard duck
(Anas platyrhynchos). Through a series of observational sessions and
experimental puddle manipulations, we aimed to decode the underlying
motivations and techniques employed by these waterfowl. Our findings
suggest that puddle jumping is not merely a recreational activity
but a complex social behavior with implications for duck hierarchy
and puddle ownership. This paper sheds light on the nuances of
puddle jumping, offering a fresh perspective on mallard social
dynamics.
</p>
<hr />
<h2>Introduction</h2>
<p>
The mallard duck (Anas platyrhynchos) is well-known for its
ubiquitous presence in urban and rural water bodies. While much
attention has been paid to their mating rituals and migratory
patterns, little is known about their puddle jumping behavior. This
study aims to fill this gap by providing a comprehensive analysis of
puddle jumping, a behavior that, though seemingly trivial, plays a
crucial role in the social structure of mallard communities.
</p>
<h2>Methods</h2>
<h3>Observational Study</h3>
<p>
We conducted our study at Duck Park, a popular habitat for mallards.
Over the course of three months, we observed 50 individual ducks
engaging in puddle jumping. Observations were made during different
times of the day to account for variations in behavior.
</p>
<h3>Experimental Puddle Manipulations</h3>
<p>
To understand the factors influencing puddle jumping, we created
artificial puddles of varying sizes and depths. Ducks were then
observed to see how these variables affected their jumping behavior.
</p>
<h2>Results</h2>
<p>Our observations revealed several key findings:</p>
<ol>
<li>
<strong>Size Preference:</strong> Ducks showed a clear preference
for puddles with a diameter of approximately 50 cm.
</li>
<li>
<strong>Depth Matters:</strong> Puddles with a depth of 5 cm were
most frequently chosen for jumping.
</li>
<li>
<strong>Social Dynamics:</strong> Dominant ducks often claimed the
best puddles, leading to a hierarchical structure based on puddle
ownership.
</li>
</ol>
<h2>Discussion</h2>
<p>
The results suggest that puddle jumping is not a random activity but
a behavior with social and environmental significance. Dominant
ducks appear to use puddle ownership as a way to assert their
status, while subordinate ducks must wait for their turn or find
lesser puddles. This behavior may also serve as a form of play,
helping young ducks develop motor skills and social bonds.
</p>
<h2>Conclusion</h2>
<p>
Puddle jumping in mallards is a complex behavior influenced by
puddle size, depth, and social hierarchy. Far from being a mere
pastime, it plays a significant role in the social structure of duck
communities. Future research should explore the long-term
implications of puddle jumping on duckling development and social
integration.
</p>
<h2>References</h2>
<ul class="list-unstyled">
<li>
Ducksworth, J. P., & Quackmore, A. (2022). The social lives of
ducks: An overview. Journal of Avian Dynamics, 15(3), 123-134.
</li>
<li>
Mallard, D. E., & Waddle, P. L. (2021). Water play in waterfowl: A
comparative study. Ornithological Studies, 10(2), 89-101.
</li>
</ul>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-light py-4">
<div class="container text-center">
<p>&copy; 2024 Duck Behavior Journal. All rights reserved.</p>
<div>
<a href="#" class="mx-2">Privacy Policy</a>
<a href="#" class="mx-2">Terms of Service</a>
<a href="#" class="mx-2">Contact</a>
</div>
<div class="social-media mt-3">
<a href="#" class="mx-2"
><img src="facebook-icon.png" alt="Facebook"
/></a>
<a href="#" class="mx-2"
><img src="twitter-icon.png" alt="Twitter"
/></a>
<a href="#" class="mx-2"
><img src="linkedin-icon.png" alt="LinkedIn"
/></a>
</div>
</div>
</footer>
<script src="../assets/dist/js/jquery-3.5.1.min.js"></script>
<script src="../assets/dist/js/bootstrap.min.js"></script>
</body>
</html>