Rebecca Pretz has a passion for riddles and puzzles. Her favorites are the Japan
ID: 3891246 • Letter: R
Question
Rebecca Pretz has a passion for riddles and puzzles. Her favorites are the Japanese logic puzzles that have become very popular in recent years. Rebecca and a few of her friends have begun work on a new web site called the Japanese puzzle factory, where they plan to create and distribute Japanese style puzzles. Eventually the jpf web site will include interactive programs to enable users to solve the puzzles on line but for now Rebecca is interested only in the design and layout of the pages. You’ve been asked to help by creating a draft version of the web page describing the Sudoku puzzle Create a table head, single row with 10 heading cells first heading blank and remaining 9 display the digits form 1 to9 Create the table body with 9 tables first cell in each row containing a table heading cell displaying the letter a thru l
Explanation / Answer
<!DOCTYPE html>
<html>
<head>
<title>Japanese style puzzles</title>
</head>
<body>
<table border="5px solid black">
<tr>
<th width=50px></th>
<th width=50px>1</th>
<th width=50px>2</th>
<th width=50px>3</th>
<th width=50px>4</th>
<th width=50px>5</th>
<th width=50px>6</th>
<th width=50px>7</th>
<th width=50px>8</th>
<th width=50px>9</th>
</tr>
</table>
</body>
</html>
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.