-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (64 loc) · 1.61 KB
/
index.html
File metadata and controls
65 lines (64 loc) · 1.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
<!-- ---
layout: default
title: Anderson Menezes - Desenvolvedor Front-end
---
{% for post in site.posts %}
<section class="post">
<header class="post-header">
<h2 class="post-title">
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<span class="post-date">{{ post.published | date: "%d" }} {{ post.published | date: "%B %Y" }}</span>
<a href="{{ post.url | prepend: site.baseurl }}"><div style="background-image: url('{{ post.image }}');" class="post-image"></div></a>
<p class="post-description">{{ post.description }}</p>
<a class="read-me" href="{{ post.url | prepend: site.baseurl }}">Continue lendo...</a>
</header>
</section>
{% endfor %}
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Anderson Menezes</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<style>
body {
background: #000;
font-family: 'Open Sans', sans-serif;
}
div {
width: 60%;
margin: 15% auto;
background: #f5f5f5;
padding: 5px 0;
}
h1, span { margin: 0; padding: 0;
text-align: center;
}
h1 {
color: #333;
text-transform: uppercase;
font-size: 80px;
letter-spacing: -8px;
}
span {
color: #a8a8a8;
display: block;
font-weight: bold;
font-size: 18px;
}
.contatos {
font-size: 14px;
font-weight: 200;
}
</style>
</head>
<body>
<div>
<h1>Anderson Menezes</h1>
<span>Front-end, arte finalista, social media e estudante de Letras na UFRB.</span>
<span class="contatos">github.com/andersoonweb // fb.com/andersoonweb // andersomxp@gmail.com</span>
</div>
</body>
</html>