-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
124 lines (106 loc) · 3.15 KB
/
contact.html
File metadata and controls
124 lines (106 loc) · 3.15 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
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
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="logo/log_logo.png" type="image/png">
<title>Hiring | Lee Optimization Group</title>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
color: #333;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
header {
border-bottom: 1px solid #eee;
padding-bottom: 20px;
margin-bottom: 20px;
}
nav a {
margin-right: 15px;
text-decoration: none;
color: #007bff;
}
footer {
margin-top: 40px;
font-size: 0.9em;
color: #777;
border-top: 1px solid #eee;
padding-top: 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer-logos {
display: flex;
align-items: center;
gap: 12px;
}
.footer-logos img {
height: 36px;
width: auto;
object-fit: contain;
}
h3 {
margin-top: 30px;
margin-bottom: 5px;
}
h3 + p {
margin-top: 0; /* 제목 바로 다음 문단 위 간격 제거 */
}
p {
margin-top: 0;
}
a {
text-decoration: none; /* 밑줄 제거 */
color: #007bff; /* 링크 색상 (원하는 색으로) */
}
a:hover {
text-decoration: underline; /* 마우스 올리면 밑줄 (선택사항) */
}
.logo-title {
display: flex;
align-items: center;
}
</style>
</head>
<body>
<header>
<h1>Lee Optimization Group</h1>
<nav>
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="publications.html">Publications</a>
<a href="group.html">Members</a>
<a href="hiring.html">Hiring</a>
<!-- <a href="gallery.html">Gallery</a> -->
<a href="contact.html">Contact</a>
</nav>
</header>
<h2>Contact</h2>
<div class="contact-box">
<p><strong>Computational Optimization Lab</strong></p>
<p>(Office) RIST 4, Room #4427</p>
<br>
<p>
Department of Computer Science and Engineering<br>
Pohang University of Science and Technology (POSTECH)<br>
77 Cheongam-ro, Nam-gu, Pohang-si, Gyeongsangbuk-do (37673)<br>
South Korea
</p>
</div>
<footer>
<p>© 2026 LOG. All rights reserved.</p>
<div class="footer-logos">
<a href="https://www.postech.ac.kr" target="_blank"><img src="logo/postech_logo.png" alt="POSTECH"></a>
<a href="https://ai.postech.ac.kr" target="_blank"><img src="logo/gsai_logo.png" alt="GSAI"></a>
<a href="https://cse.postech.ac.kr" target="_blank"><img src="logo/cs_logo.png" alt="CS"></a>
<img src="logo/log_logo.png" alt="LOG">
</div>
</footer>
</body>
</html>