-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask.html
More file actions
58 lines (46 loc) · 990 Bytes
/
Task.html
File metadata and controls
58 lines (46 loc) · 990 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
55
56
57
58
<html>
<head>
<title>box model</title>
<style>
body{
background-color:yellow;
}
h1{
text-align:center;
}
div{
border:7px solid black;
padding:50px;
margin:50px;
}
.fy{
color:orange;
text-align:center;
background-color:skyblue;
border:3px solid orange;
border-radius:30px;
}
.ty{
color:orange;
text-align:center;
background-color:skyblue;
border-radius:30px;
border:3px solid orange;
}
.sy{
background-color:White;
padding:30px;
margin:30px
border:3px solid orange;
}
</style>
<body>
<h1>RCPET'S IMRD Shirpur<h1>
<div class="sy">
<div class="fy">
<p>BCA 206<p>
</div>
<div class="ty">
<h3>WEB DESIGN-II</h3>
</div>
</div>