-
Notifications
You must be signed in to change notification settings - Fork 0
/
study_board.html
147 lines (133 loc) · 4.53 KB
/
study_board.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<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>SemtleWeb</title>
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;500;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://unpkg.com/swiper@7/swiper-bundle.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
</head>
<body>
<header class="navbar">
<div class="navbar_logo">
<img src="images/mainlogo.png" alt="" />
<a href="index.html"><span>셈틀쟁이</span></a>
</div>
<div class="navbar_mobilelogo">
<a href="javascript:history.back();" id="header-before"
><i class="fas fa-angle-left"></i
></a>
<span class="mobile_title">공지사항</span>
</div>
<ul class="navbar_menu">
<a href="notice.html"><li>공지사항</li></a>
<a href="board.html"><li>자유게시판</li></a>
<a href="study.html"><li class="current">스터디룸</li></a>
<a href="book.html"><li>책 대여</li></a>
<a href="#"><li>공모전</li></a>
</ul>
<div class="navbar_pcicon">
<a href="signup.html"><button>Sign Up</button></a>
</div>
<ul class="navbar_icon">
<li>
<a href=""><i class="fas fa-user" id="sm-login"></i></a>
</li>
<li><i class="fas fa-bars header-menu" id="menu-bars"></i></li>
</ul>
</header>
<section class="heading">
<div class="heading-box">
<span>printf("꾸르꾸르잼 C언어 스터디룸입니당~~")</span>
</div>
</section>
<section class="noticeboard">
<div class="studyroom-head">
<a href="study_board_text.html"><span>글쓰기</span></a>
</div>
<div class="noticeboard-box">
<a href="study_board_room.html">
<div class="notice-content">
<div class="notice-content-head">
<span>C언어 스터디계획 필독!! 잘해봅시다 :)</span>
<i class="fas fa-paperclip"></i>
</div>
<div class="notice-content-foot">
<span>역곡불주먹</span>
<span>|</span>
<span>01.06</span>
</div>
</div>
</a>
<div class="notice-content">
<div class="notice-content-head">
<span>C언어 스터디계획 필독!! 잘해봅시다 :)</span>
<i class="fas fa-paperclip"></i>
</div>
<div class="notice-content-foot">
<span>역곡불주먹</span>
<span>|</span>
<span>01.06</span>
</div>
</div>
<div class="notice-content">
<div class="notice-content-head">
<span>C언어 스터디계획 필독!! 잘해봅시다 :)</span>
</div>
<div class="notice-content-foot">
<span>역곡불주먹</span>
<span>|</span>
<span>01.06</span>
</div>
</div>
<div class="notice-content">
<div class="notice-content-head">
<span>C언어 스터디계획 필독!! 잘해봅시다 :)</span>
<i class="fas fa-paperclip"></i>
</div>
<div class="notice-content-foot">
<span>역곡불주먹</span>
<span>|</span>
<span>01.06</span>
</div>
</div>
<div class="notice-content">
<div class="notice-content-head">
<span>C언어 스터디계획 필독!! 잘해봅시다 :)</span>
</div>
<div class="notice-content-foot">
<span>역곡불주먹</span>
<span>|</span>
<span>01.06</span>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-box">
<div class="footer-content">
셈틀쟁이 : 가톨릭대 성심교정 다솔관 D410
</div>
<div class="footer-content">회장 김대현 010-3249-7669</div>
<div class="footer-content">
<i class="fab fa-facebook"></i>
<i class="fab fa-instagram"></i>
</div>
</div>
</footer>
</body>
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<script src="js/script.js" defer></script>
</html>