-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
121 lines (100 loc) · 3.48 KB
/
blog.html
File metadata and controls
121 lines (100 loc) · 3.48 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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="#">
<title>우리 마을 변호사</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Black+Han+Sans&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jua&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Do+Hyeon&display=swap" rel="stylesheet">
<style>
#logo {
align-items: center;
display: block;
}
#login {
float: right;
color: darkgray;
font-family: 'Jua', sans-serif;
font-size: small;
}
#login td {
padding-right: 10px;
}
a:link {
color: darkgray;
text-decoration: none;
}
a:visited {
color: darkgray;
text-decoration: none;
}
#menubar {
background: rgb(163, 213, 201);
}
#menubar ul {
margin: 0;
padding: 3;
width: 95%
}
#menubar ul li {
display: inline-block;
list-style-type: none;
padding: 6px 20px;
}
#menubar ul li a {
color: rgb(68, 68, 68);
text-decoration: none;
font-family: 'Black Han Sans', sans-serif;
font-size: 125%;
}
#menubar ul li a:hover {
color: rgb(242, 146, 72)
}
</style>
</head>
<body>
<header>
<div>
<a id="logo" href="home.html">
<center><img src="img/main_logo.png" width="600" height="200"></center>
</a>
<table id="login">
<tbody>
<tr>
<!-- 로그인 버튼 -->
<td><a href="user_login.html"><img src="img/user_login.png" width="40" height="40"></a></td>
<td><a href="user_login.html">로그인</a></td>
<!-- 변호사 로그인 버튼 -->
<td><a href="lawyer_login.html"><img src="img/lawyer_login.png" width="40" height="40"></a></td>
<td><a href="lawyer_login.html">변호사 로그인</a></td>
</tr>
</tbody>
</table>
</div>
<br><br><br>
<nav id="menubar">
<ul>
<!-- 변호사 검색 버튼 -->
<li><a href="lawyer_search_origin.html">변호사 검색 & 상담 예약 신청</a></li>
<!-- 사이버법률상담 버튼 -->
<li><a href="#none" onclick="move_no()">사이버법률상담</a></li>
<!-- 이용 안내 버튼 -->
<li><a href="howtouse.html">이용 안내</a></li>
<li><a href="blog.html"style="color: rgb(242, 146, 72);">마을변호사 소식</a></li>
<li><a href="qna.html">자주묻는 질문</a></li>
</ul>
</nav>
<br>
</header>
<center><iframe style="display:block; width:100vw; height: 100vh" src="http://blog.naver.com/mabyun"> i레임</iframe>
</center>
<script>
function move_no(){
alert("로그인이 필요한 서비스 입니다.");
}
</script>
</body>
</html>