-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbase.html
42 lines (37 loc) · 1013 Bytes
/
base.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
<!DOCTYPE html>
<html>
<head>
<title>Base converter - PicturElements</title>
<link rel="icon" href="http://picturelements.github.io/pelement.png">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,700" rel="stylesheet" type="text/css">
<style>
p{
color:red;
}
#para{
color:green;
}
.para{
color:blue;
}
</style>
</head>
<body>
<h>LOL U IS PLEB</h>
<p>u is very pleb</p>
<p id="para">u is such pleb</p>
<p id="para">u is such pleb</p>
<p id="para">u is such pleb</p>
<p class="para">u is very pleb</p>
<p class="para">u is very pleb</p>
<p class="para">u is very pleb</p>
<h>UR MOMS PLEB 2</h>
<script>
document.getElementById("para").style.fontSize="20px";
var elements=document.getElementsByClassName("para");
for (var i=0;i<elements.length;i++){
elements[i].style.fontSize="40px";
}
</script>
</body>
</html>