-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (44 loc) · 1.69 KB
/
index.html
File metadata and controls
50 lines (44 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/style.css">
<title>Diogo Castro · Software Engineer</title>
<link rel="icon" href="resources/avatar.jpg" type="image/x-icon">
</head>
<body>
<div class="background"></div>
<div class='box'>
<div class='wave -one'></div>
<div class='wave -two'></div>
<div class='wave -three'></div>
</div>
<main class="container">
<article class="card">
<header class="header">
<img src="resources/avatar.jpg" alt="Profile photo" class="avatar" />
<div>
<h1>Diogo Castro</h1>
<h2>Software Engineer</h2>
<div class="location">Brazil · Remote-friendly</div>
</div>
</header>
<div class="actions">
<a class="button" href="https://cv.diogocastro.info" target="_blank">Resume</a>
<a class="button" href="https://github.com/diogocastro" target="_blank">GitHub</a>
<a class="button" href="https://linkedin.com/in/diogo-neves-castro" target="_blank">LinkedIn</a>
</div>
<div class="section">
<p>
Automating stuff, building reliable APIs and scalable scrapers,
one request at a time... or many, asynchronously.
</p>
</div>
<footer>
© <script>document.write(new Date().getFullYear())</script> Diogo Castro
</footer>
</article>
</main>
</body>
</html>