-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice2.html
More file actions
27 lines (27 loc) · 789 Bytes
/
practice2.html
File metadata and controls
27 lines (27 loc) · 789 Bytes
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
<!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>연습 2번</title>
<link rel="stylesheet" href="./practice2.css" />
</head>
<body>
<span id="page"> </span>
<input
id="togle_switch"
type="button"
value="개인정보 숨기기"
onclick="toggle()"
/>
<p><img src=".\학생정보.png" /></p>
<divsd id="name"></divsd>
<div id="age"></div>
<div class="private" id="student_id"></div>
<div class="private" id="phone_number"></div>
<div id="hobby" onclick=""></div>
<div id="interests"></div>
</body>
<script src=".\practice2.js"></script>
</html>