-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_tag.html
36 lines (36 loc) · 1.24 KB
/
style_tag.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Frankinsense</title>
</head>
<style>
body{
height: 150vh;
width: 150vw;
background-image: url('프랭킨센스.png');
background-repeat: no-repeat;
background-size: cover;
}
.js{
font-weight: bold;
color: blueviolet;
}
#first{
color:tomato;
}
span{
color:grey;
}
</style>
<body>
<h1 style="background-color:powderblue; color:white">Frankinsense Page</h1>
<input type="button" value="what is frankinsense?" onclick="alert('9921_hz')">
<p>
<span><span id="first" class="js">프랭킨센스</span>는 신성진 외 1명으로 이루어진 보이그룹 밴드입니다.
<br>엄청난 잠재력을 보유하고 있으며 프로듀서 <span class="js">'코드쿤스트'</span>의 샤랴웃을 받은 기대주로 떠오르고있습니다.
<br><a href="https://www.youtube.com/watch?v=0QvG86vzmpQ">데뷔곡</a> ← ← ← 클릭 시 페이지로 이동</span>
<br>많은 관심 부탁드립니당.
</p>
</body>
</html>