-
Notifications
You must be signed in to change notification settings - Fork 0
/
study_board_room.html
90 lines (82 loc) · 3.07 KB
/
study_board_room.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
<!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>
<a href="javascript:history.back();" id="header-before"
><i class="fas fa-angle-left"></i
></a>
<nav class="navbar">
<a href="notice.html">공지사항</a>
<a href="board.html">자유게시판</a>
<a href="study.html">스터디룸</a>
<a href="book.html">책 대여</a>
<a href="#">공모전</a>
</nav>
<span id="header-name">스터디룸</span>
<div class="icons">
<i class="fas fa-bars header-menu" id="menu-bars"></i>
</div>
</header>
<section class="notice_text">
<div class="notice_text-box">
<div class="notice_text-content">
<div class="notice_text-content-head">
<img src="images/char.PNG" alt="" />
<div class="notice_text-content-head2">
<span>C언어 스터디계획 필독!! 잘해봅시다 :)</span>
<span>역곡불주먹 | 01.08</span>
</div>
</div>
<div class="notice_text-content-main">
<span>
2022 c언어 스터디 계획입니다. 첨부파일 꼭 확인해주세요! 앞으로
잘해봅시당~~ 2022 c언어 스터디 계획입니다. 첨부파일 꼭
확인해주세요! 앞으로 잘해봅시당~~ 2022 c언어 스터디 계획입니다.
첨부파일 꼭 확인해주세요! 앞으로 잘해봅시당~~ 2022 c언어 스터디
계획입니다. 첨부파일 꼭 확인해주세요! 앞으로 잘해봅시당~~
</span>
</div>
<div class="notice_text-content-foot studyboard-foot">
<div class="notice_text-content-foot-etc studyboard-foot-etc">
<span id="studyboard-foot-attach">첨부파일</span>
<i class="fas fa-paperclip"></i>
</div>
</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>