-
Notifications
You must be signed in to change notification settings - Fork 0
/
jisik_3.html
100 lines (79 loc) · 2.27 KB
/
jisik_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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>빵 상식</title>
<style>
* {
margin: 0;
padding: 0;
}
#logo {
padding-left: 50px;
}
#bk {
margin: auto;
display: block;
}
header {
width: 100%;
height: 50px;
background-color: #ffffff;
position: fixed;
}
header nav ul li a{
padding-left: 30px;
text-align: center;
list-style-type: none;
text-decoration: none;
color: black;
display:inline-block
}
ul li {
text-align: center;
display: inline;
}
#menu {
top: 0;
position: fixed;
margin-left: 70px;
padding: 10px;
font-size: 16px;
}
body {
font-family: pretendard;
font-size: 18px;
overflow:scroll;
}
footer {
background: #302e2e;
color: #fff;
height: 100px;
width: 100%;
font-size: 14px;
line-height: 120%;
padding: 50px;
}
</style>
</head>
<body>
<header>
<a href="index.html"><div id="logo"><img src="./img/빵로고.jpg" width="40px"></div></a>
<nav id="menu">
<ul>
<li><a href="./hotPl_1.html">핫플레이스</a></li>
<li><a href="./rank_2.html">빵 랭킹</a></li>
<li><a href="./jisik_3.html">빵 상식</a></li>
<li><a href="./program_4.html">제빵 프로그램</a></li>
<li><a href="./list_5.html">빵의 종류</a></li>
</ul>
</nav>
</header>
<a href="https://www.yes24.com/Product/Goods/103916197"><img id="bk" src="./img/book.jpg" alt="d"></a>
<footer>
Company : 주식회사 서울피자양반 Owner : 핏쟈</br>
Tel : 1544-3983 (유선 상담 불가) E-Mail : [email protected]</br>
Copyright © 핏쟈 All Rights Reserved.
</footer>
</body>
</html>