-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylingLINKS.html
56 lines (54 loc) · 1.94 KB
/
stylingLINKS.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
<!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>Pseudo selectors and more designing</title>
<style>
.container{
border: 7px solid hotpink;
background-color: aqua;
padding: 34px;
margin: 34px auto;
width: 565px;
}
a{
text-decoration: none;
}
a:hover{
color: red;
background-color: blue;
}
a.visited{
color: rgb(128, 0, 75);
background-color: brown;
}
a.active{
background-color: rgb(212, 131, 10);
}
.btn{
font-style: italic ;
background-color: greenyellow;
padding: 6px;
border: none;
cursor: pointer;
font-size: large;
border-radius: 5px;
}
.btn:hover{
background-color: tomato;
}
</style>
</head>
<body>
<div class="container" id="cont1">
<h2>This is my world.my name is shivam .hello evreyone.</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quis architecto, consectetur tenetur quo illo voluptates iusto blanditiis sed voluptatum nam ab harum deserunt similique? Odio, eum quisquam. Quibusdam natus facere quam ducimus, saepe consequuntur voluptatem molestiae eius voluptates numquam amet nobis, quidem rem neque ipsa debitis illum doloremque velit id a sapiente nam eum provident iure. Voluptate debitis sit adipisci!</p>
<a href="http://google.com"class="btn"> Read more</a>
<button class="btn">Contact Us</button>
Gender: Male<input type="checkbox" name="mymale" >
Female <input type="checkbox" name="myfemale" >
</div>
</body>
</html>