-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 2.3 KB
/
index.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta name="google-adsense-account" content="ca-pub-1106919458340211">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>로또 추천기 - 최신 로또 번호 생성기</title>
<meta name="description" content="로또 번호를 쉽고 빠르게 추천받으세요. 최신 로또 번호 생성기.">
<meta name="keywords" content="로또, 로또 번호, 로또 추천, 로또 번호 생성기,번호 생성, 1등">
<meta name="author" content="Your Name">
<meta name="robots" content="index, follow">
<meta name="google-site-verification" content="lPofpjaiIzGyWRQH3p4N7Q_3vmSjYC1cIn6HHMo8X68" />
<link rel="stylesheet" href="styles.css">
<script async src="//t1.daumcdn.net/kas/static/ba.min.js" type="text/javascript"></script>
<style>
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.content {
flex: 1;
}
.ad-container {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
background-color: #f1f1f1;
z-index: 1000;
}
.ad-wrapper {
margin: 0 auto;
max-width: 320px;
}
.kakao_ad_area {
display: block;
width: 100%;
}
</style>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1106919458340211"
crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<h1>로또 번호 추천기</h1>
<div id="roulette" class="roulette"></div>
<div id="numbers"></div>
<button id="generate-btn">번호 추천 받기</button>
</div>
<div class="ad-container">
<div class="ad-wrapper">
<ins class="kakao_ad_area"
data-ad-unit="DAN-HK1jQCbldILzotHn"
data-ad-width="320"
data-ad-height="100"></ins>
</div>
</div>
<script type="text/javascript">
kakao_adfit.load();
</script>
<script src="script.js"></script>
</body>
</html>