-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (103 loc) · 4.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!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">
<link rel="icon" href="icon/icon.png"/>
<title>Vane</title>
<link rel="stylesheet" href="style/main_style.css">
<link rel="stylesheet" href="style/body_role.css">
<link rel="stylesheet" href="style/member.css">
<link rel="stylesheet" href="style/header.css">
<link rel="stylesheet" href="style/language.css">
<link rel="stylesheet" href="style/application.css">
<link rel="stylesheet" href="style/library.css">
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700&display=swap">
<script type="module" src="bootstrap/popper.min.js"></script>
<script type="module" src="bootstrap/bootstrap.min.js"></script>
<script type="module" src="script/menu.js"></script>
<script type="module" src="script/load/member.js"></script>
<script src="script/load/shared_class.js"></script>
<script src="script/application/Application.js"></script>
<script src="script/application/Platform.js"></script>
<script src="script/library/Library.js"></script>
<script type="module" src="script/library/library_run.js"></script>
<script type="module" src="script/application/application_run.js"></script>
<script type="module" src="language/ConverterLanguage.js"></script>
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">
<a href="./index.html">
<img src="./icon/icon.png" alt="vane">
<span><b>Vane Project</b></span>
</a>
</div>
<ul class="menu_header">
<li>
<a href="https://github.com/VaneProject">
<img src="./svg/github.svg" alt="github" class="svg"> Github
</a>
</li>
<li>
<div class="dropdown">
<img src="./svg/language.svg" alt="language.css" class="svg"> Language
<div class="dropdown-content">
<a href="./index_eng.html">English</a>
<a href="./index_jap.html">日本語</a>
</div>
</div>
</li>
<li>
<a href="https://vane.jetbrains.space/">
<img src="./icon/jetbrains-space.png" alt="jetbrains space" class="svg"> Jetbrains Space
</a>
</li>
<li class="menu_hr"><hr/></li>
</ul>
<img src="./svg/menu.svg" alt="menu" class="svg fas" id="menu">
</nav>
</header>
<nav>
</nav>
<main>
<p>
종합 개발 프로젝트 팀 <b>베인</b><br>
시대의 바람에 돌아가는 <b>바람개비(날개)</b>
</p>
<ul id="role">
<li>
<a href="https://github.com/VaneProject/.github/blob/main/VANE_TEAM_RULE.md">
<img src="./svg/vane_role.svg" alt="vane role" class="svg">
베인 규칙
</a>
</li>
<li>
<a href="https://github.com/VaneProject/.github/blob/main/CODE_OF_CONDUCT.md">
<img src="./svg/conduct.svg" alt="conduct" class="svg"> 행동 강령
</a>
</li>
<li>
<a href="https://github.com/VaneProject/.github/blob/main/SECURITY.md">
<img src="./svg/security.svg" alt="security" class="svg"> 보안
</a>
</li>
</ul>
<hr>
<div class="web_header"></div>
<link rel="stylesheet" href="./style/web_link.css">
<a href="./web/decimal_conversion.html" class="web_link">진법변환</a>
<a href="./web/second.html" class="web_link">초 변환기</a>
<div class="library_header"></div>
<div class="game_header"></div>
<div class="application_header"></div>
<div class="member_header"></div>
<table id="developer_table"></table>
</main>
</body>
</html>