-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path007 fonksiyoncss.html
39 lines (34 loc) · 1.23 KB
/
007 fonksiyoncss.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resim Değiş</title>
<style>
#takim{font-size: 40px;}
</style>
</head>
<body>
<div id="takim"></div>
<button onclick="fener()">Fenerbahçe</button>
<button onclick="besiktas()">Beşiktaş</button>
<button onclick="galatasaray()">Galatasaray</button>
<script>
function fener(){
document.getElementById("takim").innerHTML="Fener";
document.getElementById("takim").style.color = "blue";
document.getElementById("takim").style.background = "yellow";
}
function besiktas(){
document.getElementById("takim").innerHTML="Beşiktaş";
document.getElementById("takim").style.color = "white";
document.getElementById("takim").style.background = "black";
}
function galatasaray(){
document.getElementById("takim").innerHTML="Galatasaray";
document.getElementById("takim").style.color = "yellow";
document.getElementById("takim").style.background = "red";
}
</script>
</body>
</html>