-
Notifications
You must be signed in to change notification settings - Fork 0
/
works.html
90 lines (88 loc) · 3.37 KB
/
works.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
<!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/portfolio.css">
<link rel="stylesheet" href="./css/nav.css">
<link rel="stylesheet" href="./css/general.css">
<link rel="icon" type="image/jpg" href="images/IMG_NGS1.jpg">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!--Start container-->
<div id="container">
<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>
<div id="wrapper">
<!--main-->
<main id="main">
<!--section-->
<section>
<h2>Works</h2>
<div id="works">
<div id="kadai9">
<p><a href="Kadai9/index.html">課題9</a></p>
</div>
<div id="kadai10">
<p><a href="Kadai10/index.html">課題10</a></p>
</div>
<div id="kadai20">
<p><a href="Kadai20/index.html">課題20</a></p>
</div>
<div id="kadai21">
<p><a href="Kadai21/index.html">課題21</a></p>
</div>
<div id="kadai22">
<p><a href="Kadai22/index.html">課題22</a></p>
</div>
</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><!--/wrapper-->
</div><!--/container-->
</body>
</html>