-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQues8.html
75 lines (75 loc) · 2.13 KB
/
Ques8.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ques8</title>
<!-- <script>
function change()
{
alert("Entered");
$("#first").css("color: red;");
}
</script> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("button").click(function () {
$("button").css({
"background-color": "grey",
border: "0px",
"border-radius": "10px",
height: "30px",
width: "10%",
"font-weight": "bolder",
color: "white",
"margin-left": "100px",
});
$("h1").css({ color: "blue" });
$("#first").css({
"margin-left": "250px",
color: "red",
display: "inline-block",
});
$("body").css({
border: "5px solid black",
"border-radius": "15px",
margin: "30px 100px",
});
});
});
</script>
</head>
<style>
body {
background-repeat: no-repeat;
background-size: cover;
}
body.background {
opacity: 0.2;
}
</style>
<body
background="https://th.bing.com/th/id/OIP.wPQlFrGDH0NhCR9AmaUEkAHaDt?w=328&h=175&c=7&r=0&o=5&dpr=1.5&pid=1.7"
>
<div id="first">
<h1>B.Sc. Hons CS</h1>
<h3>Fees</h3>
<h3>Elgibility Criteria</h3>
<h3>Paper</h3>
<h3>Future Scope</h3>
</div>
<div id="second" style="display: inline-block">
<h3>: 90K(approx)</h3>
<h3>: Mathematics and Computer Science</h3>
<h3>
: Language Papers,Algorithms, Data Structures,DBMS,Microprocessors.etc
</h3>
<h3>: Average B.Sc. CS salary in india of 6 LPA</h3>
</div>
<br />
<button onclick="change()">CHANGE STYLE</button>
<br /><br /><br />
</body>
</html>