-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAttributeAndnthChild.html
More file actions
51 lines (45 loc) · 1.42 KB
/
AttributeAndnthChild.html
File metadata and controls
51 lines (45 loc) · 1.42 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Attribute and nth child pseudo selectors</title>
<style>
.container{
display: block;
width: 233px;
margin: auto;
}
input{
display:block;
}
a[target]{
font-size: 54px;
color: violet;
}
input[type='text']{
padding: 23px;
border: solid red;
}
</style>
</head>
<body>
<div class="container">
<h1><a href="http://google.com" target="_blank">Go to google</a></h1>
<h1><a href="http://facebook.com" target="_blank">Go to Facebook</a></h1>
<form action="" class="form-control">
<input type="text" placeholder="Enter your name">
<input type="password" placeholder="Enter your password">
<input type="submit" value="Submit">
</form>
<ul>
<li class="item" id="item-item1">Item-1</li>
<li class="item" id="item-item2">Item-2</li>
<li class="item" id="item-item3">Item-3</li>
<li class="item" id="item-item4">Item-4</li>
<li class="item" id="item-item5">Item-5</li>
<li class="item" id="item-item6">Item-6</li>
</ul>
</div>
</body>
</html>