-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 1.65 KB
/
index.html
File metadata and controls
47 lines (44 loc) · 1.65 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!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 class="menu">
<section>
<p>품목 선택</p>
<button id="rice">쌀(20kg)</button>
<button id="gasoline">휘발유</button>
<button id="sweet-potato">고구마(10kg)</button>
</section>
</div>
<div>
<section class="title">
<h1>Prices Predict</h1>
</section>
<section class="title">
<a id="news">뉴스</a>
</section>
<section>
<p>물가 분석 및 예측</p>
<div class="value">
<h2>10/23 기준</h2><h2 id="price" class="price">1020 (-120)</h2>
</div>
<canvas id="chart" class="chart"></canvas>
</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>