-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3.html
31 lines (31 loc) · 961 Bytes
/
3.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>My Bulk-up Diet</title>
<link rel="stylesheet" href="./MYDIETstyle.css">
</head>
<body>
<h1 class="menu"><a href="index.html">식 단</a></h1>
<div class="navigation">
<div id="breakfast">
<h1><a href="1.html">아침 식단</a></h1>
</div>
<div id="lunch">
<h1><a href="2.html">점심 식단</a></h1>
</div>
<div id="snack">
<h1><a href="3.html" id="active">간식</a></h1>
</div>
<div id="dinner">
<h1><a href="4.html">저녁 식단</a></h1>
</div>
</div>
<div class="content">
<ol>
<li>에너지바</li>
<li>바나나/고구마</li>
</ol>
</div>
</body>
</html>