-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12-DOM.html
84 lines (59 loc) · 1.69 KB
/
12-DOM.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
76
77
78
79
80
81
82
83
84
<!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>javaScript document object model</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
nav.navBar ul{
display: flex;
justify-content: space-around;
align-items: center;
background: #000;
padding: 10px 10px;
}
nav.navBar ul li{
list-style: none;
}
nav.navBar ul li a{
text-decoration: none;
color: #fff;
}
</style>
</head>
<body>
<header>
<nav class="navBar">
<ul>
<li><a href="#">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">sevices</a></li>
<li><a href="#">contact us</a></li>
</ul>
</nav>
</header>
<script>
//1
//create a navBar and change the color of first element to red
// let a= document.getElementsByTagName("a")
// console.log(a)
// a[0].style.color="red"
//2
//change first and last element child of color to green
// b=document.getElementsByTagName("a")
// b[0].style.color="green"
// b[b.length-1].style.color="green"
//3
//change the background of all li
Array.from(document.getElementsByTagName("li")).forEach(element=>{
element.style.backgroundColor="red"
})
</script>
</body>
</html>