Can I get an example answer of this using Notepad++ (HTML)? 1. Creating a time s
ID: 3669357 • Letter: C
Question
Can I get an example answer of this using Notepad++ (HTML)?
1. Creating a time schedule: Personal
Your computer club wants you to create a table that lists meeting, open lab, and lab class times for the computer labs. Sketch a basic table format to use for this purpose and ask a few friends (or classmates) what they think. Once you have determined a good design for the Web page, begin to code the table needed. As you begin to build the Web page, you should start thinking about other table properties that could make the Web pages look even better. Create a Web page with a basic five-row, two-column table with a border. Review additional properties listed in Appendix D that can be used with tables. Find information on those properties on other Web sites, including the W3C Web site (w3.org). Modify the basic table on your Web page to incorporate at least four of these properties.
Explanation / Answer
<!Doctype html>
<html lang="en">
<head>
<title>sample table</title>
</head>
<body>
<table border="1" width="800" height="600">
<tr>
<td> 1st row 1 stcol</td>
<td> 1st row 2 stcol</td>
</tr>
<tr>
<td> 2nd row 1 stcol</td>
<td> 2nd row 2 stcol</td>
</tr>
<tr>
<td> 3rd row 1 stcol</td>
<td> 3rd row 2 stcol</td>
</tr>
<tr>
<td> 4th row 1 stcol</td>
<td> 4th row 2 stcol</td>
</tr>
<tr>
<td> 5th row 1 stcol</td>
<td> 5th row 2 stcol</td>
</tr>
</table>
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.