-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
109 lines (95 loc) · 4.21 KB
/
form.html
File metadata and controls
109 lines (95 loc) · 4.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name ="viewport" content="width = device-width, initial-scale=1.0">
<title>CODE-IT</title>
<link rel="stylesheet" href="style.css">
<style>
table {
border-collapse: collapse;
}
th, td {
padding: 8px;
border: 1px solid black;
}
</style>
</head>
<body>
<div id ="container">
<header id ="header1">
<div id ="logo">
<a href="index.html">
<h1 class="color" style="font-family: 'KCC-Ganpan';">CODE-IT</h1>
</a>
</div>
<nav id="navi">
<ul id="topMenu">
<li><a href="intro.html">학회소개<span>🤍</span></a></li>
<li><a href="activity.html">학회활동<span>🤍</span></a></li>
<li><a href="rule.html">학회 규칙<span>🤍</span></a></li>
<li><a href="login.html">신청서<span>🤍 </span></a></li>
<li><a href="assignment.html">과제<span>🤍 </span></a></li>
<div id ="div1" style="float: right; margin-right: 5px; ">
<li>색상 바꾸기</li>
<li> <button id="yellow" >💛</button> </li>
<li> <button id="pink" >❤️</button> </li>
<li><button id="skyblue" >💙</button></li>
</div>
</ul>
</nav>
</header>
<section>
<div id="introdiv">
<br>
<h2><strong>스터디 신청 폼입니다.</strong></h2><br>
<p>지금 현재 개설되어 있는 스터디는 자바스터디, 자료구조 스터디, 프론트엔드 스터디, 백엔드 스터디 입니다.</p>
다음 폼 양식에 맞추어 작성 후 제출 폼을 눌러주세요<br><br><br><br>
<form id="myForm" method="post" action="">
<fieldset>
<legend>신청자 정보</legend>
신청자 : <input type="text" name="name" required><br>
학번 : <input type="text" name="studentnum" placeholder="0000000"><br>
연락처 : <input type="tel" name="tel" placeholder="000-0000-0000" pattern="[0-9]{3}-[0-9]{4}-[0-9]{4}"><br>
신청 스터디 :
<select size="1" name="subject">
<option value="자바 스터디">자바 스터디</option>
<option value="자료 구조 스터디">자료 구조 스터디</option>
<option value="프론트 엔드 스터디">프론트 엔드 스터디</option>
<option value="백엔드 스터디">백엔드 스터디</option>
<option value="react 스터디">react 스터디</option>
<option value="spring 스터디">spring 스터디</option>
</select>
</fieldset><br>
질문사항:<br>
<textarea name="demand" rows="4" cols="40"></textarea>
</fieldset><br>
<input type="submit" value="신청">
<input type="reset" value="취소">
</form>
<table id="myTable" style="font-size: 10px;">
<thead>
<tr>
<th>신청자</th>
<th>학번</th>
<th>연락처</th>
<th>신청 스터디</th>
<th>질문사항</th>
</tr>
</thead>
<tbody></tbody>
</table>
<script src="study.js"> </script>
</div>
<div id ="links">
<img src="snowing.png" width="70%" height="70%" >
</div>
</section>
<footer id ="footer1">
만든이 :2216356 신예진<br>
본 저작권은 저작자에게 있습니다.
</footer>
</div>
<script src="button.js"></script>
</body>
</html>