-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
74 lines (63 loc) · 2.32 KB
/
main.html
File metadata and controls
74 lines (63 loc) · 2.32 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
<!DOCTYPE html>
<html lang="ko">
<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="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"
integrity="sha512-NmLkDIU1C/C88wi324HBc+S2kLhi08PN5GDeUVVVC/BVt/9Izdsc9SVeVfA1UZbY3sHUlDSyRXhCzHfr6hmPPw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="Winwiz.css" />
<link rel="icon" href="Img/favicon.png" />
<link rel="apple-touch-icon" href="Img/favicon.png" />
</head>
<body>
<section class="section main mainFirst">
<div class="mainFirst_intro">
<p class="titleFirst">윈위즈 솔루션/RMS/POS/WIZMALL</p>
<p class="titleSecond">포스 베이커리 솔루션</p>
<p class="titleThird">Digital Innovation Partner</p>
<p class="des">
윈위즈는 IT 서비스 전문기업으로서<br />
파트너의 혁신을 돕고 있습니다.
</p>
<div class="detail"><a href="#">자세히보기</a></div>
</div>
<figure>
<div class="leftImg"></div>
<div class="centerImg"></div>
<div class="rightImg"></div>
</figure>
</section>
<section class="section mainSecond"></section>
<!-- <script>
const topgnbLists = document.querySelectorAll("header .gnb>li>a");
const gnbLists = document.querySelectorAll('header .gnb>li')
const subCover = document.querySelector("header .subCover");
const subgnbLists = document.querySelectorAll("header .sub-gnb>li");
topgnbLists.forEach(function (topgnbList) {
topgnbList.addEventListener("mouseover", on);
});
gnbLists.forEach(function (gnbList) {
gnbList.addEventListener("mouseout", out);
});
function on() {
subCover.style.display = "block";
subgnbLists.forEach(function (subgnbList) {
subgnbList.style.display = "block";
});
}
function out() {
subCover.style.display = "none";
subgnbLists.forEach(function (subgnbList) {
subgnbList.style.display = "none";
});
}
</script> -->
</body>
</html>