-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.27 KB
/
Copy pathindex.html
File metadata and controls
32 lines (31 loc) · 1.27 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
<!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">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link href="./css/index.css" rel="stylesheet">
<title>물가 예측 사이트</title>
</head>
<body>
<div class="main">
<div>
<section class="title">
<h1>시각장애인을 위한 편의점 식품 판별 사이트</h1>
</section>
<section>
<p>편의점 식품을 카메라에 나오게 해주세요.</p>
<h1>이 식품은 <b id="item" class="value">참 고소한 김</b>입니다.</h1>
<video id="videoInput"/>
</section>
<section class="footer">
<p class="content">© 2022. 손안대고코딩풀기 all rights reserved.</p>
<p class="content"><a href="https://github.com/codingWithoutHand">Github</a></p>
</section>
</div>
</div>
<script src="./js/index.js"></script>
</body>
</html>