-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (69 loc) · 3.96 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
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Classroom | document</title>
</head>
<body>
<ul class="d-flex bg-dark text-light align-items-center nav">
<li class="m-2 fs-5 nav-item">Classroom</li>
<li class="m-2 nav-item">Introduce</li>
<li class="m-2 nav-item">Learn</li>
<li class="m-2 nav-item">Version</li>
</ul>
<div class="container text-dark">
<h1 class="m-5">Classroom | document</h1>
<h2 class="bg-info m-0 p-1">Introduce</h2>
<main class="bg-secondary mb-5 d-flex flex-row align-items-center p-5 flex-wrap">
<img src="./img/classrome.png" class="bg-seconary rounded" />
<p class="text-white fs-3 m-3 flex-grow-1" style="width: 300px;">This is the website about the classroom,
you can use it any where you want.
Write on Precautions at school, and prepare at home.</p>
</main>
<h2 class="bg-info m-0 p-1">Learn</h2>
<main class="bg-secondary mb-5">
<div class="d-flex flex-row align-items-center mb-3 flex-wrap p-4 bg-dark">
<img src="./img/index.jpeg" alt="index page" class="rounded m-3" style="width: 50%;" />
<p class="text-white fs-4 m-2" style="width: 400px;">This is the index page, click <code>Look it</code>
and you and see the
precautions wrote at school, and click <code>Editor</code> to write, click <code>Setting</code>
login and change the password.</p>
</div>
<div class="d-flex flex-row align-items-center flex-wrap p-4">
<p class="text-white fs-4 m-3" style="width: 400px;">The Pick Bar on the right can select the date, and
the right side can see the content.</p>
<img src="./img/look.jpeg" class="rounded m-2" alt="look" style="width: 50%;" />
</div>
<div class="d-flex flex-row align-items-center mb-3 flex-wrap p-4 bg-dark">
<img src="./img/editor.jpeg" alt="index page" class="rounded m-3" style="width: 50%;" />
<p class="text-white fs-4 m-2" style="width: 400px;">It is the editor page, you can write something in
it. It is very useful, you can simply write any important things you want. There are 6 items you
have to select. There is an example below.
<code><mark>明</mark>(date) <mark>考</mark>(section 2) <mark>數學</mark>(section
1) <mark>課本</mark>(section 3) <mark>第一課p.5</mark>(page) <mark>記得要來</mark>(description)</code>
</p>
</div>
</main>
<h2 class="bg-info m-0 p-1">Version</h2>
<main class="bg-light mb-5 d-flex flex-column p-4">
<div class="d-flex align-items-center m-2 rounded" style="width: 100px;">
<p class="fs-1 m-0 m-2">1.0.0</p>
<span class="badge bg-danger">Beta</span>
</div>
</main>
</div>
<footer class="bg-dark text-white d-flex justify-content-center fs-5" style="height: 50px;">
<p>2022 Classroom © </p>
</footer>
</body>
</html>