-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest.js
37 lines (37 loc) ยท 1.74 KB
/
test.js
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
let str = `<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400&display=swap"
rel="stylesheet"
/>
<title>ํํ</title>
<style>
h1 {
font-size: 1.4rem;
padding-bottom: 10px;
border-bottom: 5px solid #171d6b;
}
body {
border: 1px solid #cdcdcd;
padding: 15px;
border-radius: 12px;
font-family: "Noto Sans KR";
}
</style>
</head>
<body>
<h1>๐ ๊ทธ๋ฃน๋ณ ์ฃผ๊ฐ ๋ถ์๋ณด๊ณ ์</h1>
<p>๊ทธ๋ฃน ์ด๋ฆ : "${event.name}"</p>
<p>๊ทธ๋ฃน ๊ณต์ง์ฌํญ : ${event.noti}</p>
<p>ํด๋น ์ ์ ์ ๊ทธ๋ฃน ๋ด ๋์ ์ถ์ ์ผ์ : ${event.date}์ผ</p>
<p>ํด๋น ์ ์ ๊ฐ ์ถ์ ๋ฌธ์ ์ค ํด๊ฒฐํ์ง ๋ชปํ ๋ฌธ์ ๋ค : ${event.prob}</p>
<p>ํด๋น ์ ์ ์ ๊ทธ๋ฃน ๋ด ๋ญํน : ${event.rank}๋ฑ</p>
</body>
</html>
`;