-
Notifications
You must be signed in to change notification settings - Fork 0
/
about_me.html
162 lines (154 loc) · 6.71 KB
/
about_me.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>MyPortfolio</title>
<meta name="description" content="自己紹介">
<link rel="stylesheet" href="https://unpkg.com/ress/dist/ress.min.css">
<link rel="stylesheet" href="./css/general.css">
<link rel="stylesheet" href="./css/nav.css">
<link rel="stylesheet" href="./css/portfolio.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!--Start container-->
<div id="container">
<!--header section-->
<header>
<nav>
<ul>
<li>
<a href="index.html">HOME</a>
</li>
<li>
<a href="works.html">works</a>
</li>
<li>
<a href="about_me.html">about</a>
</li>
<li>
<a href="contact_me.html">contact</a>
</li>
</ul>
</nav>
</header>
<!--/header-->
<div id="wrapper">
<!--main-->
<main id="main">
<!--section-->
<section>
<h2>About Me</h2>
<div id="about">
<section>
<h3>目次</h3>
<ol>
<li><a href="#gaiyou">概要</a></li>
<li><a href="#profile">profile</a></li>
<li><a href="#schedule">schedule</a></li>
</ol>
<hr>
<h3 id="gaiyou">概要</h3>
<p>生年月日:平成14年11月08日~現在<br>
</p>
<hr>
<table border="1">
<caption id="profile"><strong>profile</strong></caption>
<tr>
<th>出席番号</th>
<td>B104</td>
<td rowspan="5"><img src="./images/profile.jpg" alt=""></td>
</tr>
<tr>
<th>名前</th>
<td>ガイレ カビル</td>
</tr>
<tr>
<th>得意科目</th>
<td>Java</td>
</tr>
<tr>
<th>好きな食べ物</th>
<td>チョコレート</td>
</tr>
<tr>
<th>所持資格</th>
<td>なし</td>
</tr>
</table>
<hr>
<table border="1">
<caption id="schedule"><strong>schedule</strong></caption>
<tr>
<th>曜日</th>
<th>1時限</th>
<th>2時限</th>
<th>3時限</th>
<th>4時限</th>
</tr>
<tr>
<th>月</th>
<td></td>
<td>データベースオラクルⅠ</td>
<td colspan="2">プログラミングⅠ</td>
</tr>
<tr>
<th>火</th>
<td>アルゴリズムⅠ</td>
<td>プログラミングⅠ</td>
<td>情報倫理学Ⅰ</td>
<td></td>
</tr>
<tr>
<th>水</th>
<td></td>
<td>linuxⅠ</td>
<td>コンピュータシステムⅠ(ビッグデータ)</td>
<td>経営学Ⅰ</td>
</tr>
<tr>
<th>木</th>
<td>英会話Ⅰ</td>
<td colspan="2">コンピュータシステムⅠ</td>
<td>HR</td>
</tr>
<tr>
<th>金</th>
<td>(1Bのみ)キャリアデザインⅠ <br>(後期から)</td>
<td>ビジネスリテラシーⅠ</td>
<td colspan="2">ネットワークⅠ</td>
</tr>
</table>
</section>
</div>
</section>
<!--/section-->
</main>
<!--/main-->
<!--top-->
<p class="pagetop">
<a href="#" title="ページトップへ戻る">
<img src="images/pagetop.png" alt="ΔPAGE TOP">
</a>
</p>
<!--footer Section-->
<footer>
<div>
<p>Last Modified:
<script>
var modified = new Date(document.lastModified);
var year = modified.getFullYear();
var month= modified.getMonth() + 1;
var date = modified.getDate();
var day = modified.getDay();
var youbi= ['日','月','火','水','木','金','土']
document.write( year + "年" + month + "月" + date + "日" + youbi[day] + "曜日");
</script>
</p>
<p><small>©Kabir Gaire, All Rights Reserved.</small></p>
</div>
</footer><!-- /Footer-->
</div>
</div><!--/container-->
</body>
</html>