-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylingLinks&Buttons.html
56 lines (55 loc) · 1.72 KB
/
stylingLinks&Buttons.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>Links and Buttons</title>
<style>
.divClass
{
border: solid;
background-color: rgb(245, 217, 217);
padding: 33px;
margin: 30px auto;
width: 666px;
border-color: brown;
}
.bclass:hover
{
background-color: blueviolet;
}
a:hover
{
background-color: azure;
}
a:visited
{
background-color: yellow;
}
button:hover
{
background-color: azure;
}
.bclass
{
padding: 10px;
border: double;
border-color: black;
margin: auto;
background-color:yellowgreen;
cursor: pointer;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
</style>
</head>
<body>
<div class="divClass" id="divId">
<h1>Links and Buttons</h1>
<p class="pclass" id="pId">Lorem ipsum dolor sit amet consectetur adipisicing elit. Nihil eius vel exercitationem veritatis tempora nostrum, cumque a, voluptatem maxime atque, ea
totam quidem dolore quis laborum. Quidem ut, id esse fugiat molestias repudiandae!</p>
<button class="bclass">Contact Us</button>
<a href="heelo.com" class="bclass" target="_blank">Read More</a>
</div>
</body>
</html>