-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
91 lines (81 loc) · 3.06 KB
/
Copy pathmain.html
File metadata and controls
91 lines (81 loc) · 3.06 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<link rel="stylesheet" href="styles.css">
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Leonardo Milos - Profile Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="profile-container">
<div class="profile-header">
<img src="profile-photo.jpg" alt="Profile Photo" class="profile-photo">
<h1 class="profile-name">Leonardo Milos</h1>
<p class="profile-title">Developer</p>
</div>
<div class="profile-content">
<h2>About Me</h2>
<p>Experienced Developer at Sole Capital with expertise in Python, Docker, SQL, and market data analysis. Passionate about creating innovative software solutions and optimizing processes.</p>
<h2>Professional Experience</h2>
<ul class="experience-list">
<li>
<strong>Developer</strong> - Sole Capital (10.2019 - Present)<br>
<ul>
<li>Create, develop, and support SQL databases.</li>
<li>Process and analyze market data.</li>
<li>Develop strategies and market analysis.</li>
</ul>
</li>
</ul>
<h2>Projects</h2>
<ul class="projects-list">
<li>
<strong>Virtual Reality Project</strong> - Centro Universitário FEI (06.2019 - 10.2020)<br>
<p>Developed a virtual reality project using C# and C++.</p>
</li>
<li>
<strong>Programming Marathon</strong> - Centro Universitário FEI (06.2016 - 06.2019)<br>
<p>Optimized code in C++ and participated in the National Competition (2017).</p>
</li>
</ul>
<h2>Skills</h2>
<ul class="skills-list">
<li>Python</li>
<li>C++</li>
<li>C</li>
<li>C#</li>
<li>SQL</li>
<li>HTML & CSS</li>
<li>Docker</li>
</ul>
<h2>Languages</h2>
<ul class="languages-list">
<li>Portuguese: Fluent</li>
<li>English: Advanced</li>
</ul>
<h2>Education</h2>
<p><strong>Bachelor's Degree in Computer Science</strong> - Centro Universitário FEI (02.2017 - 12.2020)</p>
<h2>Contact</h2>
<ul class="contact-list">
<li>LinkedIn: <a href="https://www.linkedin.com/in/leonardo-pilati-milos-6a13b322b/" target="_blank">Leonardo Milos</a></li>
<li>GitHub: <a href="https://github.com/leomilos" target="_blank">leomilos</a></li>
</ul>
<h2>References</h2>
<ul class="references-list">
<li>
<strong>Prof. Guilherme Wachs Lopes</strong> - Centro Universitário FEI<br>
Email: guilhermewachs@gmail.com<br>
Phone: +55 (11) 97317-2754
</li>
<li>
<strong>Ricardo de Figueiredo Radaeli</strong> - Sole Capital<br>
Email: ricardo.radaeli@solecapital.com.br<br>
Phone: +55 (11) 98110-9789
</li>
</ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>