-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpe.html
108 lines (108 loc) · 3.86 KB
/
cpe.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!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-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<title>Document</title>
<style>
.flex{
display:flex;
}
.push{
margin-left: 20px;
}
.mid{
background-color: #F6F7F8;
padding: 40px 50px 20px 50px;
height: 95vh;
}
.conten{
background-color: white;
}
.conten1{
background-color: white;
margin-left: 40px;
}
footer{
height: 5vh;
text-align: center;
background-color:#262f3c;
}
ul {
list-style: none; /* 移除點點 */
}
a {
color: black; /* 將文字顏色設為黑色 */
text-decoration: none; /* 去除文字下的裝飾,比如下劃線 */
}
</style>
</head>
<body>
<header style="background-color: w;"><header>
<div class="container">
<div class="row">
<h1 style="padding: 20px;">Mark's Blog</h1>
</div>
</div>
<hr style="margin-top: 0;">
<div class="container">
<div class="row">
<ul class="flex">
<a href="index.html">Home</a>
<a class="push" href="cpe.html">CPE</a>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle push" href="#" role="button" data-bs-toggle="dropdown">Codeforce</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="800.html">800</a></li>
<li><a class="dropdown-item" href="900.html">900</a></li>
</ul>
</li>
<a class="push" href="learn.html">學習歷程</a>
<a class="push" href="self.html">自我介紹</a>
</ul>
</div>
</div>
<hr style="margin-top: 0; margin-bottom: 0;">
<div class="mid">
<div class="container">
<div class="row flex">
<div class="conten col-7">
<h2>cpe </h2>
<ul>
<li>CPE 大學程式能力檢定</li>
<li>Codeforce解題紀錄</li>
<li>學習歷程</li>
<li>自我介紹</li>
</ul>
</div>
<div class="col-1" style="background-color: #F6F7F8;"></div>
<div class="conten1 col-3">
<iframe
src="https://www.chatbase.co/chatbot-iframe/O2vt1RgkbY8P6aHvQhyTl"
width="100%"
style="height: 100%; min-height: 700px"
frameborder="0"
></iframe>
</div>
</div>
</div>
</div>
</body>
<footer>
<p style="color: #F6F7F8;">@Mark's</p>
</footer>
<script>
window.embeddedChatbotConfig = {
chatbotId: "O2vt1RgkbY8P6aHvQhyTl",
domain: "www.chatbase.co"
}
</script>
<script
src="https://www.chatbase.co/embed.min.js"
chatbotId="O2vt1RgkbY8P6aHvQhyTl"
domain="www.chatbase.co"
defer>
</script>
</html>