-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 1.88 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rock+3D&display=swap" rel="stylesheet">
<title>WEB</title>
<style>
h1, h2{
font-family: 'Rock 3D',cursive;
}
h1 a {
text-decoration: none;
}
h1 {
padding:20px;
border-bottom:20px solid red;
}
ol {
border-right:20px solid green;
}
#container {
display:grid;
grid-template-columns: 200px 1fr;
}
</style>
</head>
<body>
<script>
const bodyTag = document.querySelector('body');
function changeColorA(color){
const as = document.querySelectorAll('a');
for(let i=0; i<as.length; i=i+1){
as[i].style.color = color;
}
}
</script>
<input type="button" value="야간" onclick="
if(this.value === '야간') {
bodyTag.style.backgroundColor='black';
bodyTag.style.color='white';
this.value = '주간';
changeColorA('white');
} else {
bodyTag.style.backgroundColor='white';
bodyTag.style.color='black';
this.value = '야간';
changeColorA('black');
}
">
<h1><a href="index.html">WEB</a></h1>
<div id="container">
<ol>
<li><a href="1.html">html</a></li>
<li><a href="2.html">css</a></li>
<li><a href="3.html">javascript</a></li>
</ol>
<div>
<h2>Welcome</h2>
WWW is World wide web! <br>
</div>
</div>
</body>
</html>