-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
63 lines (59 loc) · 2.19 KB
/
main.html
File metadata and controls
63 lines (59 loc) · 2.19 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!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="main.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<title>귀한 농산물 귀농</title>
</head>
<body>
<header id="header">
<div class="container">
<div>
<a href="main.html">
<img id="logo" src="./img/logo.jpg" alt="메인로고">
</a>
</div>
<nav class="nav">
<ul>
<li class="dropdown"><a>카테고리</a>
<ul class="dropdown-menu">
<li><a href="summary.html">사과</a></li>
<li><a href="summary.html">포도</a></li>
<li><a href="summary.html">딸기</a></li>
</ul>
</li>
<li><a href="summary.html">베스트</a></li>
<li><a href="summary.html">제철</a></li>
<li><a href="bucket.html">장바구니</a></li>
<li><a id="login_btn">로그인</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="price">
<!-- api 불러오면 ---원 부분을 실시간으로 가격을 업데이트 할 수 있게 만들 예정 -->
<div id="apple">
<span>오늘의 사과 평균 경매 가격</span>
<span>8000원</span>
</div>
<div id="grape">
<span>오늘의 포도 평균 경매 가격</span>
<span>10000원</span>
</div>
<div id="straw">
<span>오늘의 딸기 평균 경매 가격</span>
<span>13000원</span>
</div>
</section>
<section>
<div class="para">
</div>
</section>
</main>
<script src="main.js"></script>
</body>
</html>