-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrolweb.html
44 lines (44 loc) · 1.89 KB
/
controlweb.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Frankinsense</title>
</head>
<style>
.js{
font-weight: bold;
color: blueviolet;
}
#first{
color:tomato;
}
</style>
<body>
<h1 style="background-color:powderblue; color:white">Frankinsense Page</h1>
<input type="button" value="Dark" onclick="
document.querySelector('body').style.backgroundColor='black';
document.querySelector('body').style.color='white';
">
<input type="button" value="Default" onclick="
document.querySelector('body').style.backgroundColor='white';
document.querySelector('body').style.color='black';
">
<input id = "dark_dafault" type="button" value="Change_Mode" onclick="
if(document.querySelector('#dark_dafault').value === 'Dark'){
document.querySelector('body').style.backgroundColor='black';
document.querySelector('body').style.color='white';
document.querySelector('#dark_dafault').value='Default';
} else {
document.querySelector('body').style.backgroundColor='white';
document.querySelector('body').style.color='black';
document.querySelector('#dark_dafault').value = 'Dark';
}
">
<p>
<span id="first" class="js">프랭킨센스</span>는 신성진 외 1명으로 이루어진 꽃미남 보이그룹 밴드입니다.
<br>엄청난 잠재력을 보유하고 있으며 프로듀서 <span class="js">'코드쿤스트'</span>의 샤랴웃을 받은 기대주로 떠오르고있습니다.
<br><a href="https://www.youtube.com/watch?v=0QvG86vzmpQ"><span style="color: blue;">데뷔곡</span></a> ← ← ← 클릭 시 페이지로 이동
<br>많은 관심 부탁드립니당.
</p>
</body>
</html>