-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #34
49 lines (49 loc) · 932 Bytes
/
Battle #34
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
<!-- #34 Challenge Completed-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#007065;
justify-content:center;
align-items:center;
display:flex;
}
.t-1{
position:absolute;
margin-top:100px;
margin-left:0px;
width: 0;
height: 0;
border-left: 125px solid transparent;
border-right: 125px solid transparent;
border-bottom: 100px solid #00A79D;
}
.t-2{
position:absolute;
margin-top:0px;
margin-left:0px;
width: 0;
height: 0;
border-left: 125px solid transparent;
border-right: 125px solid transparent;
border-bottom: 100px solid #F5C181;
}
.t-3 {
position:absolute;
margin-top:-100px;
margin-left:0px;
width: 0;
height: 0;
border-left: 125px solid transparent;
border-right: 125px solid transparent;
border-bottom: 100px solid #FFEECF;
}
</style>
</head>
<body>
<div class="t-1"></div>
<div class="t-2"></div>
<div class="t-3"></div>
</body>
</html>