Skip to content

Commit

Permalink
Added crossword puzzle as per the issue sugarlabs#3327
Browse files Browse the repository at this point in the history
  • Loading branch information
omsuneri committed Oct 10, 2023
1 parent 5f26df0 commit a28d551
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions examples/Crossword-Puzzle.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>CrossWord Puzzle</h1>
<!--As the musical alphabets are A B C D E F G so the answers to this crossword puzzle are completely formed by these alphabets**-->
<p>**Clue to solve this is that the answers to this crossword puzzle are words barely formed by the musical alphabets.</p>
<h3>Across</h3>
<ol>
<li>The front part of your head the expression that shown on it.</li>
<li>A piece of furniture that you lie on when you sleep.</li>
<li>A small restaurant that serves drinks and light meals.</li>
<li>The part of a lorry, train, bus, etc. where the driver sits.</li>
<li>To ask somebody for something strongly, or with great emotion.</li>
</ol>
<h3>Down</h3>
<ol>
<li>To become or make something become lighter in colour or less strong or fresh.</li>
<li>A strong container made of paper or thin plastic that opens at the top</li>
<li>A playing card which has a single shape on it.</li>
<li>Box in which a bird or animal is kept so that it cannot escape.</li>
<li>The meat from a cow.</li>
</ol>

<h2>Answer</h2>
<h3>Across</h3>
<ol>
<li>Face</li>
<li>Bed</li>
<li>Cafe</li>
<li>Cab</li>
<li>Beg</li>
</ol>
<h3>Down</h3>
<ol>
<li>Fade</li>
<li>Bag</li>
<li>Ace</li>
<li>Cage</li>
<li>Beef</li>
</ol>
</body>
</html>

0 comments on commit a28d551

Please sign in to comment.