-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrankinsense.html
88 lines (82 loc) · 2.99 KB
/
Frankinsense.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Frankinsense</title>
</head>
<style>
p{
border: solid 1pt grey;
margin: 30px;
padding: 30px;
}
.js{
font-family: cursive;
font-weight: bold;
color: blueviolet;
}
#first{
font-size: 16pt;
color:magenta;
}
#bb{
font-style: italic;
color: brown;
}
</style>
<body>
<div id="ffg" style.background-color= 'grey'><h1>Frankinsense Page</h1></span>
<input type="button" value="Change_Mode" onclick="
var af = document.getElementById('ffg')
var target = document.querySelector('body')
if(this.value === 'Night'){
target.style.backgroundColor='black';
target.style.color='white';
af.style.backgroundColor='white';
this.value='Morning';
var links = document.querySelector('a');
var i = 0;
while(i<links.length){
links[i].style.color='grey'
}
} else {
target.style.backgroundColor='white';
target.style.color='black';
this.value = 'Night';
}
">
<p>
<span id="first" class="js">Frankinsense</span><span id="bb">는 신성진 외 1명으로 이루어진 꽃미남 보이그룹 밴드입니다.</span>
<br>엄청난 잠재력을 보유하고 있으며 프로듀서 <span class="js">'코드쿤스트'</span>의 샤랴웃을 받은 기대주로 떠오르고있습니다.
<br><a href="https://www.youtube.com/watch?v=0QvG86vzmpQ"><span style="color: red;">데뷔곡</span></a> ← ← ← 클릭 시 페이지로 이동
<br>
</p>
<p>
<img src="프랭킨센스.png" width = "300" height = "300" alt="Central Park" />
</p>
<form method="get" action="process.php">
<fieldset>
<legend>Details</legend>
<p>
<label>Artist</label>
<input type="text" name="Artist" />
</p>
<p>
<label>Song</label>
<select name="who">
<option>Choose the song</option>
<optgroup label="Best song">
<option>Butterflies in my throat</option>
<option>gom 3mari</option>
</optgroup>
<optgroup label="Worst song">
<option>야생화</option>
<option>강남스타일</option>
</optgroup>
</select>
</p>
<input type="submit" value="Select" />
</fieldset>
</form>
</body>
</html>