-
Notifications
You must be signed in to change notification settings - Fork 0
/
showcase.html
43 lines (40 loc) · 1.53 KB
/
showcase.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<title>CS369 My pages with responsive design</title>
</head>
<body>
<header>
<h1>CS369 My pages with responsive design</h1>
</header>
<section class="content">
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="showcase.html">My Showcase</a></li>
<li><a href="tulife.html">My Tu Life</a></li>
<li><a href="resume.html">My Resume</a></li>
</ul>
</div>
<div class="mainContent">
<h1>Showcase Project</h1>
<!-- VDOs -->
<iframe width="560" height="315" src="./VDOs/demo.mp4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen title="Demo Video"></iframe>
</div>
<div class="secondContent">
<h1>ArtBot - Line Chatbot for Similar Artworks</h1>
<p> This is a Line chatbot that utilizes an advanced algorithm to find similar artworks in a database based on user input image.</p>
<p> Tech stack used: Python, FastAPI, Line API, OpenCV, and more.</p>
</div>
</section>
</section>
<footer>
<h3>Contact me</h3>
<p>[email protected]</p>
<p>© 2024 CS369 Thammasat University</p>
</footer>
</body>
</html>