Files
server/tests/unit/resources/htmlContent.html
2024-06-04 11:38:05 +03:00

67 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Pets</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #4CAF50;
color: #fff;
padding: 20px;
text-align: center;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
h1, h2 {
text-align: center;
}
p {
line-height: 1.6;
}
</style>
</head>
<body>
<header>
<h1>Our Pets</h1>
<p>Welcome to our page about our beloved pets!</p>
</header>
<div class="container">
<h2>Meet Our Furry Friends</h2>
<p>We have a variety of pets that bring joy to our lives:</p>
<h3>Dog: Bella</h3>
<p>Bella is a friendly golden retriever who loves playing fetch and going on long walks.</p>
<h3>Cat: Whiskers</h3>
<p>Whiskers is a curious tabby cat who enjoys lounging in sunny spots and chasing toy mice.</p>
<h3>Rabbit: Snowball</h3>
<p>Snowball is an adorable white rabbit with floppy ears. She hops around the garden and munches on carrots.</p>
<h3>Parrot: Rio</h3>
<p>Rio is a colorful parrot who loves mimicking sounds and learning new words. His favorite treat is sunflower seeds.</p>
<h2>Why We Love Our Pets</h2>
<p>Our pets bring so much happiness and companionship into our lives. They are always there to greet us with excitement and provide unconditional love.</p>
<p>Do you have pets too? Share your pet stories with us!</p>
</div>
</body>
</html>