-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflower.html
More file actions
162 lines (151 loc) · 2.61 KB
/
flower.html
File metadata and controls
162 lines (151 loc) · 2.61 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<html>
<head>
<style>
#outer{
height:1000px;
width:1000px;
border: 1px solid;
background-color:white;
}
#sec_outer{
margin:50px 0px 0px 50px;
height:900px;
width:900px;
border: 1px solid;
background-color:pink;
}
#third_outer{
margin:50px 0px 0px 75px;
height:800px;
width:750px;
border: 1px solid;
background-color:aqua;
}
.row{
height:100px;
width:750px;
margin:0px auto;
}
#flo1{
margin:50px 0px 0px 200px;
height:100px;
width:100px;
background-color:yellow;
border-radius: 100px 100px 0px 100px;
float:left;
}
#flo2{
margin:50px 300px 0px 0px;
height:100px;
width:100px;
background-color:yellow;
border-radius: 100px 100px 100px 0px;
float:left;
}
#flo3{
margin:0px 0px 0px 200px;
height:100px;
width:100px;
background-color:yellow;
border-radius: 100px 0px 100px 100px;
float:left;
}
#flo4{
height:100px;
width:100px;
background-color:yellow;
border-radius: 0px 100px 100px 100px;
float:left;
}
#circle{
height:40px;
width:40px;
border-radius:100px;
background-color:orange;
margin-left:293px;
margin-top:50px;
}
.box{
margin:50px 0px 0px 0px;
height:100px;
width:30px;
float:left;
}
.line{
height:300px;
width:3px ;
background-color:black;
float:left;
margin:0px;
}
.leaf1{
height:100px;
width:130px;
float:left;
border-radius: 0px 100px 0px 100px;
background-color:green;
position:relative;
top:100px;
right:155px;
border:3px solid;
}
.leaf2{
height:100px;
width:130px;
float:left;
border-radius: 100px 0px 100px 0px;
background-color:green;
position:relative;
right:155px;
top:10px;
border:3px solid;
}
#box1{
height:20px;
width:300px;
background-color:blue;
border-radius: 5px;
left:160px;
position:relative;
border:3px solid;
}
#box2{
height:120px;
width:250px;
background-color:blue;
border-radius: 0px 0px 40px 40px;
left:180px;
position:relative;
}
</style>
</head>
<body style="background-color:black;display:flex;margin:50px 0px 0px 200px;">
<div id="outer">
<div id="sec_outer">
<div id="third_outer">
<div class="row">
<div id="flo1"></div>
<div class="box"></div>
<div id="flo2"></div>
</div>
<div id="circle"></div>
<div class="row">
<div id="flo3"></div>
<div class="box"></div>
<div id="flo4"></div>
</div>
<div class="row" style="height:300px;">
<div class="leaf1"></div>
<div class="line" style="position:relative;right:155px;" ></div>
<div class="box" style="height:300px;"></div>
<div class="line" style="position:relative;right:155px;"></div>
<div class="leaf2"></div>
</div>
<div class="row">
<div id="box1"></div>
<div id="box2"></div>
</div>
</div>
</div>
</body>
</html>