-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage title
56 lines (54 loc) · 1.26 KB
/
page title
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>Page Title</title>
<style>
div{
border: 2px outset brown;
background-color: blanchedalmond;
width: 150px;
height: 200px;
margin: 15px;
padding: 10px;
float: left;
box-shadow: 8px 15px 10px darkgreen;
overflow: auto;
}
div:hover{
border: 10px outset dark goldenrod;
box-shadow: 8px 15px 10px darksalmon;
}
img{
display: block;
margin-left: auto;
margin-right: auto;
width:50%;
border: 2px outset brown;
}
img:hover{
border:5px outset brown;
}
.bcolor{
background-color: darkturquoise;
}</style>
</head>
<body>
<h1>BCA</h1>
<p>Internrt Technology</p>
<div>
<p>HTML</p>
</div>
<div class="bcolor" >
<p>CSS</p>
</div>
<div>
<p>JAVASCRIPT</p>
</div>
<div class="bcolor">
<p>JQUERY</p>
</div>
</body>
</html>