<!--tableの幅が全て一緒になる-->
<head>
<style type="text/css">
<!--
h1{font-size:14px; }
/*罫線を一本にする テーブルの幅・高さ*/
table {
border-collapse: collapse;
height: 100px; width: 80%; /*★テーブルの高さ・幅*/
}
/*★tdセルの設定CSS*/
.td8{
border: 1px #000000 solid;
/*枠線上下左右に表示・太さ・色・一重線*/
width: %; text-align: left;font-size:14px;
/*セルの幅・文字の位置*/
background-color: #fffff0;
/*セルの背景色*/
font-size:16px;
/*フォントの指定*/
line-height: 1.2em;
/*セルの行間を設定二段の場合*/
padding: 30px;}
/*セル内の余白*/
</style>
</head>
<body>
<!--表をセンターに--><table align="center" >
<tr>
<td class="td8">
保存場所を<a href="https://app.box.com/s/70vci7l5sw1zi7z5nauj76xp424sghwh"target="_blank">開く</a><br>
呈す神無<br>
1234<br>
</td>
</tr>
</table>
</body>