-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo4.html
44 lines (37 loc) · 942 Bytes
/
demo4.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
<html>
<head>
<title>
Updating/removing Classes
</title>
</head>
<style>
.small{
font-size: 42px;
text-align: center;
}
.smaller{
font-size:20px;
text-align: center;
}
#p{
align-items: center;
padding: 20px;
}
body{
background-color: aqua;
}
#btn{
padding: 10px;
margin-left: 45%;
background-color:blueviolet;
margin-top: 200px;
}
</style>
<body>
<div id="p">
<h1 id="text" class="small">CHECK ME OUT</h1>
</div>
<input type="button" value="CLICK TO SEE MAGIC" id="btn">
</body>
<script type="text/javascript" src="demo4.js"></script>
</html>