duckbehaviorjournal/papers/nibbling-nuisances.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

176 lines
7.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Nibbling Nuisances: The Biting Behavior of Bored Ducklings - 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">
Nibbling Nuisances: The Biting Behavior of Bored Ducklings
</h1>
<p class="text-muted">
Dr. Penelope Quackston, PhD; Dr. Mallard Drakeford, PhD; Prof.
Featherly Downsworth, DSc
</p>
<p>
<strong>Note:</strong> The full paper is available for download for
subscribers only.
</p>
<p>
<strong>Abstract:</strong> This study explores the curious and often
amusing behavior of ducklings (Anas platyrhynchos) biting each other
when bored. Through a series of observational sessions and
controlled boredom-inducing experiments, we aimed to understand the
motivations and social implications of this behavior. Our findings
suggest that nibbling serves as both a form of play and a method of
establishing social bonds among ducklings. This paper provides a
light-hearted yet insightful look into the world of duckling
interactions and the role of boredom in their social dynamics.
</p>
<hr />
<h2>Introduction</h2>
<p>
Ducklings are known for their playful and curious nature. While much
attention has been given to their feeding and swimming behaviors,
less is known about how they interact when boredom strikes. This
study investigates the nibbling behavior observed in ducklings,
where they take gentle bites off each other. We aim to uncover the
reasons behind this behavior and its impact on duckling social
structures.
</p>
<h2>Methods</h2>
<h3>Observational Study</h3>
<p>
We conducted our study at Duckling Haven, a sanctuary for young
ducks. Over a period of four weeks, we observed 25 ducklings in a
natural setting, paying close attention to instances of nibbling
behavior during periods of inactivity.
</p>
<h3>Controlled Boredom Experiments</h3>
<p>
To further understand the behavior, we created controlled
environments where ducklings had limited stimuli. We then observed
their interactions, focusing on the frequency and context of
nibbling.
</p>
<h2>Results</h2>
<p>Our observations revealed several key findings:</p>
<ol>
<li>
<strong>Frequency of Nibbling:</strong> Ducklings engaged in
nibbling behavior more frequently during periods of inactivity or
boredom.
</li>
<li>
<strong>Social Bonds:</strong> Nibbling appeared to strengthen
social bonds, with ducklings often nibbling close companions.
</li>
<li>
<strong>Playful Nature:</strong> The behavior was generally gentle
and playful, with no signs of aggression or distress.
</li>
</ol>
<h2>Discussion</h2>
<p>
The results suggest that nibbling behavior in ducklings is a playful
activity that serves multiple purposes. It helps alleviate boredom,
strengthens social bonds, and provides a means for ducklings to
explore their environment and each other. This behavior mirrors
play-fighting observed in other young animals and highlights the
importance of social interaction in duckling development.
</p>
<h2>Conclusion</h2>
<p>
The nibbling behavior of bored ducklings is a fascinating aspect of
their social dynamics. Far from being a mere nuisance, it plays a
crucial role in building social bonds and providing mental
stimulation. Future research should explore the long-term effects of
this behavior on duckling development and social integration.
</p>
<h2>References</h2>
<ul class="list-unstyled">
<li>
Feather, B. L., & Quackmore, A. (2022). Playful interactions in
young waterfowl. Journal of Avian Behavior, 14(2), 101-115.
</li>
<li>
Billingsworth, D., & Webfoot, M. (2021). Social play in ducklings:
An ethological perspective. Ornithological Studies, 11(3), 67-80.
</li>
</ul>
<h2>Disclosure</h2>
<p>
The authors declare no conflict of interest. This research was
funded by the Duckling Behavior Foundation and the Society for Avian
Studies.
</p>
</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>