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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>천년경영 데모 후기 이벤트</title> <style> body, div, h1, h2, ul {margin:0px;padding:0px;line-height:1em;} li {list-style-type:none} table {border-spacing:0px;} .Container {background:url('./bg2.png') #5cbcff center top no-repeat;} .Wrap {margin:0 auto;width:690px;} .Wrap h1 {margin-top:45px;height:36px;text-align:center;font-size:36px;} .comment {margin-top:30px;text-align:center;font-weight:600;line-height:1.25em;} .comment .yellow {color:#FF0;padding-bottom:1px;border-bottom:1px solid #FF0;} .result {display:block;padding-top:110px;font-size:15px;font-weight:600;text-align:center;margin:0 auto;overflow:hidden;} </style> </head>
<body class="Container"> <div class="Wrap"> <h1>할인이벤트</h1> <div class="result"> <p>할인 이벤트가 정상적으로 등록되었습니다.</p> <p>감사합니다.</p> </div> </div> </body> </html>
|