-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (69 loc) · 2.55 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"
></script>
<title>CPE207-Lab01</title>
</head>
<body>
<div class="px-4 py-5 my-5 text-center">
<h1 class="display-5 fw-bold text-body-emphasis">
Lab01 - Github Classroom
</h1>
<img
src="imgs/bootstrap-themes.png"
class="d-block mx-lg-auto img-fluid"
alt="Bootstrap Themes"
width="400"
loading="lazy"
/>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">
ใน lab นี้ นศ. จะได้ทำความคุ้นเคยกับการ join เข้าไปยัง Github
classroom เพื่อรับโจทย์สำหรับการทำ lab ในแต่ละครั้ง และสามารถส่ง lab
ที่เสร็จแล้วได้อย่างถูกต้อง
</p>
<div>
<p>
<button
class="btn btn-success"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseExample"
aria-expanded="false"
aria-controls="collapseExample"
>
Student Information
</button>
</p>
<div class="collapse" id="collapseExample">
<div class="card card-body">
กรุณาป้อนข้อมูล รหัสนักศึกษา ชื่อ-สกุล ภาษาไทย-อังกฤษ
ของท่านที่นี่
</div>
</div>
</div>
<hr />
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<button type="button" class="btn btn-primary btn-lg px-4 gap-3">
261207
</button>
<button type="button" class="btn btn-warning btn-lg px-4">
Basic CPE Lab.
</button>
</div>
</div>
</div>
</body>
</html>