Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/PitBull.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Samoyed.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Shepherd.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
78 changes: 67 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,70 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="shortcut icon" href="https://placekitten.com/96/139" type="image/x-icon">
<script src="https://unpkg.com/htmx.org@1.9.10" integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC" crossorigin="anonymous"></script>
</head>
<body>

</body>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Homework trial</title>
<link
rel="shortcut icon"
href="https://placekitten.com/96/139"
type="image/x-icon"
/>
<script
src="https://unpkg.com/htmx.org@1.9.10"
integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC"
crossorigin="anonymous"
></script>
</head>
<body>
<h1> Dog breed</h1>
<h2> Pit Bull</h2>
<img src="images/PitBull.jpeg" width="300px">
<h3> Five facts about Pit Bull</h3>
<ol>
<li> Not a single breed – "Pit Bull" is a term that refers to several breeds, including the American Pit Bull Terrier, American Staffordshire Terrier, and Staffordshire Bull Terrier.</li>
<li>Strong and muscular – Pit Bulls are known for their powerful build and high energy levels.</li>
<li>Very loyal – With proper training and socialization, Pit Bulls are incredibly loyal and loving companions.</li>
<li>Great with kids – They were once called "nanny dogs" because of their gentle nature with children.</li>
<li>Misunderstood reputation – Despite media portrayals, Pit Bulls are not inherently aggressive and can be very friendly and affectionate.</li>
</ol>
<h2>Samoyed</h2>
<img src="images/Samoyed.jpg" width="300px">
<ol>
<li>Fluffy and white – Samoyeds have a thick, white double coat that keeps them warm in cold climates.</li>
<li>Always smiling – Their upturned mouths give them a signature “Sammy smile,” which helps prevent drooling and icicles in cold weather!/li>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix HTML Syntax Error in Samoyed Fact List Item
There is a typo in the list item: the closing </li> tag is merged into the text.

-      <li>Always smiling – Their upturned mouths give them a signature “Sammy smile,” which helps prevent drooling and icicles in cold weather!/li>
+      <li>Always smiling – Their upturned mouths give them a signature “Sammy smile,” which helps prevent drooling and icicles in cold weather!</li>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<li>Always smiling – Their upturned mouths give them a signature “Sammy smile,” which helps prevent drooling and icicles in cold weather!/li>
<li>Always smiling – Their upturned mouths give them a signature “Sammy smile,” which helps prevent drooling and icicles in cold weather!</li>

<li>Originally sled dogs – They were bred by the Samoyede people in Siberia to herd reindeer and pull sleds.</li>
<li>Very social – Samoyeds are friendly, gentle, and love being around people (not a great choice if you’re rarely home!).</li>
<li>Heavy shedders – They “blow” their coat seasonally, so get ready for some serious grooming!</li>
</ol>
<h2>German shepherd</h2>
<img src="images/Shepherd.jpg" width="300px">
<ol>
<li>Highly intelligent – German Shepherds are one of the smartest dog breeds, making them easy to train.</li>
<li>Loyal protectors – They’re known for their loyalty and protective instincts, often used as police, military, and guard dogs.</li>
<li>Active and energetic – This breed needs regular exercise and mental stimulation to stay happy and healthy.</li>
<li>Great working dogs – Originally bred for herding sheep, they now excel in many jobs, including search and rescue and service work.</li>
<li>Strong bond with owners – German Shepherds form deep connections with their families and thrive on companionship.</li>
</ol>
<form>
<h1> Vote who would you like to get as pet?</h1>
<label>
<input type="checkbox" name="vote" value="option1">
Pit Bull
</label><br>

<label>
<input type="checkbox" name="vote" value="option2">
Samoyed
</label><br>

<label>
<input type="checkbox" name="vote" value="option3">
German shepherd
</label><br><br>

<button type="submit">Vote</button>
</form>

</body>
</html>