-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogger_post.html
87 lines (70 loc) · 3.08 KB
/
blogger_post.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
<center>
<div>
<button id="btn1" onclick="showBlock1()"
style="background-color: #2b9a23; border-bottom-width: 1px; border-color: rgb(213, 213, 213); border-left-width: 1px; border-radius: 5px; border-right-width: 1px; border-top-width: 1px; border-width: 1px; color: white; cursor: pointer; font-size: medium; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; margin: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; padding-top: 10px; padding: 10px 20px; width: 40%;">
Malayalam
</button>
<button id="btn2" onclick="showBlock2()"
style="background-color: #a3a3c2; border-bottom-width: 1px; border-color: rgb(213, 213, 213); border-left-width: 1px; border-radius: 5px; border-right-width: 1px; border-top-width: 1px; border-width: 1px; color: white; cursor: pointer; font-size: medium; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; margin: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; padding-top: 10px; padding: 10px 20px; width: 40%;">
English
</button>
</div>
<div id="div1" style="display: block;">
<span style="font-size: medium;">Update soon!</object></span>
</div>
<div id="div2" style="display: none;">
<span style="font-size: large;"> Update soon!</span>
</div>
<br />
<table
style="background-color: #2b9a23; border-collapse: collapse; border: 1px solid black; color: white; text-align: center; width: 100%;">
<tbody>
<tr style="border: 1px solid black;">
<td style="border: 1px solid black; padding: 5px; width: 50%;">
Singer
</td>
<td id="singer_name" style="border: 1px solid black; padding: 5px; width: 50%;">
-
</td>
</tr>
<tr style="border: 1px solid black;">
<td style="border: 1px solid black; padding: 5px; width: 50%;">
Lyricist
</td>
<td id="lyricist_name" style="border: 1px solid black; padding: 5px; width: 50%;">
-
</td>
</tr>
<tr style="border: 1px solid black;">
<td style="border: 1px solid black; padding: 5px; width: 50%;">
Musician
</td>
<td id="musician_name" style="border: 1px solid black; padding: 5px; width: 50%;">
-
</td>
</tr>
</tbody>
</table>
<script>
function showBlock1() {
var x = document.getElementById("div1");
var y = document.getElementById("div2");
var a = document.getElementById("btn1");
var b = document.getElementById("btn2");
x.style.display = "block";
y.style.display = "none";
a.style.backgroundColor = "#2b9a23";
b.style.backgroundColor = "#a3a3c2";
}
function showBlock2() {
var x = document.getElementById("div1");
var y = document.getElementById("div2");
var a = document.getElementById("btn1");
var b = document.getElementById("btn2");
x.style.display = "none";
y.style.display = "block";
a.style.backgroundColor = "#a3a3c2"
b.style.backgroundColor = "#2b9a23";
}
</script>
</center>