forked from singhanand453/2-css
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrial.html
More file actions
53 lines (44 loc) · 752 Bytes
/
Copy pathtrial.html
File metadata and controls
53 lines (44 loc) · 752 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title> border assign</title>
<style type="text/css">
.f1{
background-color: red;
border: 100px yellow solid;
}
.f2{
background-color: blue;
border-style: solid dashed ridge dotted;
border-color: red black yellow pink;
border-width: 10px;
}
.f3{
background-color: green;
border-radius: 15px;
border-style: circle;
}
#sq{
width:100px;
height: 100px;
margin: 40px;
}
a{
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: green;
}
</style>
</head>
<body>
<div class="f1" id="sq">
</div>
<div class="f2"id="sq">
</div>
<div class="f3" id="sq">
</div>
<a href="">This is a link</a>
</body>
</html>