Table with rowspan
HTML
Hard
3 views
Problem Description
Create a table where 'Web' is a row group header spanning two topic rows.
Output Format
Print the HTML code.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode</title>
</head>
<body>
<table>
<tr><th>Group</th><th>Topic</th></tr>
<tr><td rowspan='2'>Web</td><td>HTML</td></tr>
<tr><td>CSS</td></tr>
</table>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!