-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprice.html
More file actions
144 lines (118 loc) · 3.02 KB
/
Copy pathprice.html
File metadata and controls
144 lines (118 loc) · 3.02 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>K.Code</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="K.Code">
<meta name="keywords" content="K.Code,プログラミング,プログラミングスクール,学生,学生から始めるプログラミング,学生から始められるプログラミングスクール,学生用プログラミングスクール,学生向けのプログラミングスクール,中学,高校,大学">
<link rel="stylesheet" href="css/style_about_price.css">
<link rel="stylesheet" href="css/slide.css">
<script src="js/openclose.js"></script>
<script src="js/fixmenu.js"></script>
<script src="js/scroll.js"></script>
<script src="js/fixmenu_pagetop.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(window).scroll(function() {
var windowH = $(window).height(),
scrollY = $(window).scrollTop();
$('#logo img, #about-kcode-other h1, #about-kcode-other h2, #about-kcode-other h3, #about-kcode-other h4').each(function() {
var elPosition = $(this).offset().top;
if (scrollY > elPosition - windowH) {
$(this).addClass("fadein");
}else{
$(this).removeClass("fadein");
}
});
});
</script>
<!--フェードイン-->
</head>
<body>
<header>
<div class="fix-background White">
<nav id="menubar">
<ul>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#course">Course</a></li>
<li><a href="index.html#schedule">Schedule</a></li>
</ul>
</nav>
</div>
</header>
<div id="container">
<div id="contents">
<div class="fix-background Price">
<div id="about-kcode">
<h1>Price</h1>
<table class="ta1">
<tr>
<th>Cafe Latte Order App</th>
<td>¥2,500/h</td>
</tr>
<tr>
<th>Janken App</th>
<td>¥2,500/h</td>
</tr>
<tr>
<th>Baseball Player App</th>
<td>¥2,500/h</td>
</tr>
<tr>
<th>Python Basic</th>
<td>¥3,000/h</td>
</tr>
<tr>
<th>Programing Competitions</th>
<td>¥3,000/h</td>
</tr>
<tr>
<th>Data Analysis</th>
<td>¥3,000/h</td>
</tr>
<tr>
<th>Machine Learning</th>
<td>¥3,500/h</td>
</tr>
<tr>
<th>Deep Learning</th>
<td>¥3,500/h</td>
</tr>
</table>
<h2>
一回の講義は、一時間を目安に作成しております。<br>
</h2>
</div>
</div>
<div class="bg2">
<h5>Contact</h5>
</div>
<!--/#about-->
<div id="contact">
<div class="fix-background KCode_Contact">
<p class="c"><a href="index.html"><img src="images/K_Code_label(white_transparency).png" alt="" width="150px"></a></p>
<nav id="menubar_last">
<ul>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#course">Course</a></li>
<li><a href="index.html#schedule">Schedule</a></li>
</ul>
</nav>
<p>
Mail: kaito_narimoto@icloud.com<br>
AM9:00〜PM10:00</p>
</div>
</div>
</div>
<!--/#contents-->
</div>
<!--/#container-->
<footer>
<small>Copyright© K.Code All Rights Reserved.</small>
<span class="pr">Web Design: Kaito Narimoto</span>
</footer>
<!--<p class="nav-fix-pos-pagetop"><a href="#">↑</a></p>-->
</body>
</html>