-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm.html
48 lines (48 loc) · 1.74 KB
/
Form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Form Example</title>
<link href="Form.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="form-container">
<h1>멘티 지원 폼</h1>
<form>
<div class="form-group">
<label for="name">이름</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="school">학교</label>
<input type="text" id="school" name="school" required>
</div>
<div class="form-group">
<label for="grade">학년</label>
<select id="grade" name="grade">
<option value="1st">1학년</option>
<option value="2nd">2학년</option>
<option value="3th">3학년</option>
</select>
</div>
<div class="form-group">
<label for="motivation">지원동기</label>
<textarea id="motivation" name="motivation"></textarea>
</div>
<div class="form-group">
<label for="portfolio">포트폴리오 링크</label>
<input type="text" id="portfolio" name="portfolio">
<br>
<input type="text" id="portfolio" name="portfolio">
<br>
<input type="text" id="portfolio" name="portfolio">
<br>
</div>
<div class="form-group">
<button type="submit">지원하기</button>
</div>
</form>
</div>
</body>
</html>