-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathonline_lesson.html
More file actions
127 lines (104 loc) · 3.76 KB
/
Copy pathonline_lesson.html
File metadata and controls
127 lines (104 loc) · 3.76 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
<!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_online_lesson.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 Online_Lesson">
<div id="about-kcode">
<h1>Online Lesson</h1>
<h2>
オンラインミーティングツールZoomを用いた個別授業になっています。</br>
ポストコロナ社会でも、Zoomを活用することで、リモートでプログラミングを安心、安全に学んで頂けます。</br>
また、リモート学習により、場所や時間を選ばない学習方法を身につけることができます。</br>
</h2>
</div>
</div>
<div id="about-kcode-other">
<div class="fix-background Online_Lesson_Text">
<h3>Text</h3>
<h4>
プログラムやその概念などをフローに従って作成したテキストになります。</br>
なので、各授業後に復習のしやすいテキストになっております。</br>
また、復習の段階でわからないことがあればいつでも連絡をしてください。お待ちしております。</br>
</h4>
</div>
<div class="fix-background Online_Lesson_Practice">
<h1>Practice</h1>
<h2>
授業の合間に演習をする時間を設けていますので、プログラミングの能力がより定着しやすくなり、理解力の促進へ繋がります。</br>
演習でわからない部分が出てきましたら、適宜対応致します。</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>