-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (71 loc) · 1.35 KB
/
index.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CV | Jorge Bravo</title>
<style>
body {
font-family: Arial;
color: white;
}
.split {
height: 100%;
width: 50%;
position: fixed;
z-index: 1;
top: 0;
overflow-x: hidden;
padding-top: 20px;
}
.left {
left: 0;
background-color: #027466;
}
.right {
right: 0;
background-color: #d2d956;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.centered img {
width: 150px;
border-radius: 50%;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #878787;
color: white;
text-align: center;
z-index: 10
}
</style>
</head>
<body>
<div class="split left">
<div class="centered">
<img src="https://www.w3schools.com/w3images/avatar2.png" alt="Avatar woman">
<h2>Jorge Bravo</h2>
<p>CV para imprimir</p>
</div>
</div>
<div class="split right">
<div class="centered">
<img src="https://www.w3schools.com/howto/img_avatar.png" alt="Avatar man">
<h2>Jorge Bravo</h2>
<p>CV interactivo</p>
</div>
</div>
<div class="footer">
<p>Basado en w3school</p>
</div>
</body>
</html>
<!-- basado en ejmmplos de:https://www.w3schools.com -->