forked from akanksha-raghav/SIH-NEW-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrough.html
44 lines (40 loc) · 795 Bytes
/
rough.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
<html>
<head>
</head>
<body>
<style type="text/css">
.Left
{
width: 250px;
height: 250px;
float: left;
background-color: Blue;
}
.center
{
width: 250px;
height: 250px;
background-color: Red;
float: left;
}
.Right
{
width: 250px;
height: 250px;
background-color: Fuchsia;
float: left;
clear: right;
}
</style>
and divs will be
<div class="Left">
Left
</div>
<div class="center">
Center
</div>
<div class="Right">
Right
</div>
</body>
</html>