Newer
Older
2020-c119073-taka / calender.html
<!DOCTYPE html>
 
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>自己紹介ページ</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
 
<div class="container">
 
<header>
<h3 class="title">たかしのページ</h3>
 
<ul>
<li><a href="index.html">ホーム</a></li>
</ul>
 
</header>
 
<div class="main">
 
<div class="content">
<h1>カレンダー</h1>

<div class="calender">
<h2>5月</h2>
<table border="1">
<tbody>
	
<tr class="day">
<th>日</th>
<th>月</th>
<th>火</th>
<th>水</th>
<th>木</th>
<th>金</th>
<th>土</th>
</tr>

<tr>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th>1</th>
<th>2</th>
</tr>

<tr>
<th>3</th>
<th class="ho">4</th>
<th class="ho">5</th>
<th class="ho">6</th>
<th>7</th>
<th>8</th>
<th>9</th>
</tr>

<tr>
<th>10</th>
<th>11</th>
<th>12</th>
<th>13</th>
<th>14</th>
<th>15</th>
<th>16</th>
</tr>

<tr>
<th>17</th>
<th>18</th>
<th>19</th>
<th>20</th>
<th>21</th>
<th>22</th>
<th>23</th>
</tr>

<tr>
<th>24</th>
<th>25</th>
<th>26</th>
<th>27</th>
<th>28</th>
<th>29</th>
<th>30</th>
</tr>

<tr>
<th>31</th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>

</tbody></table>
</div>
 
 
</div>
 
</div>
</div>
 
</body>
 
</html>