-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (62 loc) · 1.86 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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>주말 한잔.</title>
<link rel="stylesheet" href="./css/home.css" />
<script>
(function (d) {
var config = {
kitId: 'auw1psa',
scriptTimeout: 3000,
async: true,
},
h = d.documentElement,
t = setTimeout(function () {
h.className =
h.className.replace(/\bwf-loading\b/g, '') + ' wf-inactive';
}, config.scriptTimeout),
tk = d.createElement('script'),
f = false,
s = d.getElementsByTagName('script')[0],
a;
h.className += ' wf-loading';
tk.src = 'https://use.typekit.net/' + config.kitId + '.js';
tk.async = true;
tk.onload = tk.onreadystatechange = function () {
a = this.readyState;
if (f || (a && a != 'complete' && a != 'loaded')) return;
f = true;
clearTimeout(t);
try {
Typekit.load(config);
} catch (e) {}
};
s.parentNode.insertBefore(tk, s);
})(document);
</script>
</head>
<body>
<div id="wrap">
<header>
<div class="main_logo"></div>
</header>
<main>
<div id="to_soju" class="main_banner">
<a href="./soju/p1.html">
<p class="main_copi">당연히 소주지!</p>
<p class="main_select">SELECT THIS ></p>
</a>
</div>
<div id="to_beer" class="main_banner">
<a href="./beer/p1.html">
<p class="main_copi">맥주는 못 참지</p>
<p class="main_select">SELECT THIS ></p>
</a>
</div>
</main>
</div>
</body>
</html>