-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths4.html
59 lines (58 loc) · 1.06 KB
/
s4.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<head>
<title> Practica 4 </title>
<style>
.upper{
background-color: #ff9c9c;
text-align: center;
height: 10vh;
color: black;
font-family: "Helvetica", Arial, Sans-serif;
font-size: 1.4em;
font-weight:bold;
border: 1px solid black;
}
.middle{
border: 1px solid black;
background-color: #96e1ff;
display:flex;
text-align: center;
height: 80vh;
color: black;
font-family: "Helvetica", Arial, Sans-serif;
font-size: 1.4em;
font-weight:bold
}
.central{
border: 1px solid black;
flex:40%;
}
.left{
border: 1px solid black;
flex:30%;
}
.right{
border: 1px solid black;
flex:30%;
}
</style>
</head>
<body>
<div class="upper">
<p>Esto es la cabecera</p>
</div>
<div class="middle">
<div class="left">
<p>BI</p>
</div>
<div class="central">
<p>BC</p>
</div>
<div class="right">
<p>BD</p>
</div>
</div>
<div class="upper">
<p>Esto es el footer</p>
</div>
</body>