console
<!DOCTYPE html>
<html>
<head>
<style>
#sb{color: red;}
#ddv{background:lightgreen}
#qwe{ background:pink}
#wer{background:orange}
#ert{background:yellow}
#rty{background:tan}
#tyu{background:indigo}
#yui{background: blue}
#uio{background:white}
#iop{background:grey}
#hjk{background:grey}
#asd{background:green}
#sdf{background:coral}
#dfg{background:magenta}
#fgh{background:blue}
#ghj{background:wheat}
</style>
<meta charset="UTf-8">
<title></title>
</head>
<body>
<h1 style="color:wheat">战争游戏:</h1>
<table border="16" style="font-weight:bolder">
<thead id='sb'>
<tr>
<td id="qwe">姓名</td>
<td id="wer">性别</td>
<td id="ert">年龄</td>
<td id="rty">攻击力</td>
<td id="tyu">防御力</td>
</tr>
</thead>
<tbody>
<tr >
<td id='ddv'>张三</td>
<td id="yui">男</td>
<td id="uio">28</td>
<td id="iop">???</td>
<td id="asd">999</td>
</tr>
<tr>
<td id="sdf">王二麻子</td>
<td id="dfg">女</td>
<td id="fgh">25</td>
<td id="ghj">005</td>
<td id="hjk">???</td>
</tr>
</tbody>
</table>
</body>
</html>