Skip to content

Commit

Permalink
Create print.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Base committed Jun 24, 2019
1 parent 6bd9a6e commit ef033ae
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions print.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<!DOCTYPE html>
<html>
<head>
<title>Air Travel Agency</title>
<meta charset="utf-8">
<style type="text/css">
.center {
width: 300px;
margin: auto;
text-align: center;
}
table tr td:first-child {
font-weight: bold;
}
table tr td {
text-align: center;
border: 2px solid black;
}
</style>
</head>
<body>
<div class="center">
<h2>Air Travel Agency</h2>
<table width="300px" dir="ltr">
<tr>
<td>Name1</td>
<td>Max Base</td>
</tr>
<tr>
<td>Name2</td>
<td>Stephin R.A</td>
</tr>
<tr>
<td>Mobile</td>
<td>+1 123 12 12</td>
</tr>
<tr>
<td>Target</td>
<td>Sanfrancisco to Canada</td>
</tr>
<tr>
<td>Date</td>
<td>2019/06/26</td>
</tr>
<tr>
<td>Begin</td>
<td>12:30</td>
</tr>
<tr>
<td>End </td>
<td>15:00</td>
</tr>
<tr>
<td>Fly Code</td>
<td>112258</td>
</tr>
<tr>
<td>Buy</td>
<td>13000</td>
</tr>
<tr>
<td>Sell</td>
<td>15000</td>
</tr>
<tr>
<td>Code</td>
<td>87r9</td>
</tr>
</table>
</div>
</body>
</html>

0 comments on commit ef033ae

Please sign in to comment.