1.工商银行电子汇款单源代码:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>工商银行电子汇款单</title>
<style>
.container {
width: 60%;
margin: 0 auto;
padding: 20px;
}
h1 {
text-align: center;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<div class="container">
<h1>工商银行电子汇款单</h1>
<table>
<tr>
<th colspan="2">回单类型</th>
<td colspan="1">网上转账汇款</td>
<th colspan="2">指令序号</th>
<td colspan="1">HQH0000000000000013878172</td>
</tr>
<tr>
<th rowspan="4">收款人</th>
<td>户名</td>
<td>老牟</td>
<th rowspan="4">付款人</th>
<td>户名</td>
<td>老刘</td>
</tr>
<tr>
<td>卡号</td>
<td>0000000000001</td>
<td>卡号</td>
<td>0000000000002</td>
</tr>
<tr>
<td>地区</td>
<td>南京</td>
<td>地区</td>
<td>杭州</td>
</tr>
<tr>
<td>网点</td>
<td>工商江苏南京业务处理中心</td>
<td>网点</td>
<td>江苏徐州业务中心</td>
</tr>
<tr>
<th colspan="2">币种</th>
<td>人民币</td>
<th colspan="2">钞汇标志</th>
<td>钞票</td>
</tr>
<tr>
<th>金额</th>
<td colspan="2">1.00元</td>
<th colspan="2">手续费</th>
<td>0.57元</td>
<tr>
<th>合计</th>
<td colspan="5">人民币(大写):壹圆整</td>
</tr>
</tr>
<tr>
<th colspan="2">交易时间</th>
<td colspan="1">2017年6月1日</td>
<th colspan="1">时间戳</th>
<td colspan="2">2017-06-01-13.00.00,00000</td>
</tr>
</table>
<div class="info">
<p>票据打印时间:2017-06-01 15:00:12</p>
<p><del>票据打印单位:江苏徐州业务中心</del></p>
<p>操作员:大曾</p>
</div>
</div>
</body>
</html>
结果:

2.诗歌源代码:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>将进酒 - 李白</title>
<style>
body {
font-family: 'KaiTi', serif;
background-color: #f0f8ff;
color: #333;
margin: 0;
padding: 20px;
text-align: center;
}
.container {
display: inline-block; /
margin: 0 auto;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
table {
width: 100%;
max-width: 800px;
border-collapse: collapse;
margin-top: 20px;
}
td {
padding: 10px;
vertical-align: bottom;
}
.image-cell {
width: 500px;
}
.text-cell {
width: 500px;
}
.title-author {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
}
h1 {
color: #090401;
margin: 0;
}
h2{
color: #130404;
margin: 0;
margin-right: 450px;
}
.poem {
line-height: 1.3;
}
.line {
margin-bottom: 10px;
margin-right: 50px;
}
</style>
</head>
<body>
<div class="container">
<div class="title-author">
<h1>将进酒</h1>
<h2>君不见黄河之水天上来</h2>
</div>
<table>
<tr>
<td class="image-cell">
<img src="imges/image.png" alt="Poet Li Bai">
</td>
<td class="text-cell">
<div class="poem">
<div class="line">君不见黄河之水天上来,奔流到海不复回。</div>
<div class="line">君不见高堂明镜悲白发,朝如青丝暮成雪。</div>
<div class="line">人生得意须尽欢,莫使金樽空对月。</div>
<div class="line">天生我材必有用,千金散尽还复来。</div>
<div class="line">烹羊宰牛且为乐,会须一饮三百杯。</div>
<div class="line">岑夫子,丹丘生,将进酒,杯莫停。</div>
<div class="line">与君歌一曲,请君为我侧耳听。</div>
<div class="line">钟鼓馔玉不足贵,但愿长醉不复醒。</div>
<div class="line">古来圣贤皆寂寞,惟有饮者留其名。</div>
<div class="line">陈王昔时宴平乐,斗酒十千恣欢谑。</div>
<div class="line">主人何为言少钱,径须沽取对君酌。</div>
<div class="line">五花马,千金裘,</div>
<div class="line">呼儿将出换美酒,与尔同销万古愁。</div>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>
结果:
