-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 752 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (35 loc) · 752 Bytes
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>frovere.github.io</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/pure-min.css">
<style>
body {
background-color: #F9F9E5;
color: #0c0c0b;
}
.splash {
width: 80%;
height: 50%;
margin: auto;
position: absolute;
top: 100px; left: 0; bottom: 0; right: 0;
text-align: center;
}
.is-center {
text-align: center;
}
</style>
</head>
<body>
<div class="splash">
<div class="pure-g is-center">
<h1 class="pure-u-1">Felipe Rovere</h1>
</div>
<div class="pure-g is-center">
<p class="pure-u-1">Chile</p>
</div>
</div>
</body>
</html>