-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathB.html
More file actions
37 lines (36 loc) · 863 Bytes
/
Copy pathB.html
File metadata and controls
37 lines (36 loc) · 863 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>북 배너 만들기 2</title>
<style>
*{
margin:0;
padding:0;
}
#banner{
width:185px;
height:236px;
background-image:url("banner_bg.jpeg");
border:solid 1px #cccccc;
}
#banner img{
margin:208px 0 0 50px;
}
</style>
</head>
<body>
<h3>PHP 책 소개</h3>
<ul>
<li>저자 : 황재호</li>
<li>출판사 : 한빛아카데미</li>
<li>가격 : 30,000원</li>
</ul>
<div id="banner">
<img src="buy.PNG" alt="">
</div>
<br><br>
<a href="index.html">홈으로</a>
</body>
</html>