-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathharin_Week1_2.html
39 lines (39 loc) · 1.58 KB
/
harin_Week1_2.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
<!doctype html>
<html>
<head>
<meta charset="'utf-8">
<title>최근의 고민</title>
<style>
p{
background: lemonchiffon;
padding:20px;
margin:20px;
border: 5px solid cyan;
}
div{
width:200px;
background: pink;
padding:30px;
margin:30px;
border: 8px dotted skyblue;
text-align: center;
}
</style>
</head>
<body>
<input type="button" value="pink" onclick="
document.querySelector('body').style.backgroundColor = 'pink';
document.querySelector('body').style.color = 'navy';">
<input type="button" value="gray" onclick="
document.querySelector('body').style.backgroundColor = 'gray';
document.querySelector('body').style.color = 'black';">
<input type="text" onkeydown="alert('파이팅!')">
<p style="font-size:30px;"><strong>과제</strong>가 계속 생겨요...<br>
1학년 때는 교수님들이 친절하게 하나하나 가르쳐주셨는데 2학년이 되니 단신으로 정글에 던져진 기분입니다.<br>
이것이 진정한 대학생의 모습인 줄은 꿈에도 몰랐습니다.<br>
그래도 함께 고통받는 동기들이 있어서 즐거워요.^^</p>
<div>
<a href="C:\Users\chika\OneDrive\문서\PKNU\GDSC_FRONTEND\harin_Week1_1.html">본문으로 돌아가기</a>
</div>
</body>
</html>