-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (77 loc) · 2.7 KB
/
index.html
File metadata and controls
78 lines (77 loc) · 2.7 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../CSS/common.css" />
<link rel="stylesheet" href="../CSS/footer.css" />
<link rel="stylesheet" href="../CSS/index.css" />
<!-- JavaScript Bundle with Popper -->
<!-- 부트스트랩(아이콘용) -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
<!-- CSS only -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css"
/>
<!-- jquery -->
<script
src="https://code.jquery.com/jquery-3.7.0.js"
integrity="sha256-JlqSTELeR4TLqP0OG9dxM7yDPqX1ox/HfgiSLBj8+kM="
crossorigin="anonymous"
></script>
<script
src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"
integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30="
crossorigin="anonymous"
></script>
<title>왈라비</title>
</head>
<!-- 헤더 불러오기 -->
<div id="headers"></div>
<body>
<header>
<!-- <div>왈라비</div> -->
</header>
<div id="calendar"></div>
<!-- <div id="board_list"></div> -->
<!-- <div id="write_board_main" style="display: none"></div> -->
<div class="main">
<!-- <img
class="main_img"
src="https://plasknew.s3.ap-northeast-2.amazonaws.com/W_mainpage.png"
srcset="https://plasknew.s3.ap-northeast-2.amazonaws.com/mainH.png 390w"
alt="메인 이미지"
/> -->
</div>
<!-- <div class="explain">서비스 설명</div> -->
<br />
<div id="footer"></div>
<script>
$(document).ready(function () {
$("#headers").load("./html/header.html");
$("#calendar").load("../html/calendar.html");
// $("#board_list").load("../html/board.html");
// $("#write_board_main").load("../html/write_board_main.html");
$("#footer").load("../html/footer.html", function () {
$("#footer_ul li a.Home").css({
background:
"linear-gradient(to left bottom, rgb(229, 56, 162), rgb(47, 201, 231))",
"-webkit-background-clip": "text",
"-webkit-text-fill-color": "transparent",
});
});
});
</script>
</body>
</html>