forked from ANKIT9761/2-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrial.html
More file actions
54 lines (45 loc) · 832 Bytes
/
Copy pathtrial.html
File metadata and controls
54 lines (45 loc) · 832 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
54
<!DOCTYPE html>
<html>
<head>
<title> border assign</title>
<style type="text/css">
.f1{
background-color:rgb(60,65,78);
border: 100px green 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>
<h4>This is Trial.html File where the website is getting styled </h4>
<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>