-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (97 loc) · 4.46 KB
/
Copy pathindex.html
File metadata and controls
100 lines (97 loc) · 4.46 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
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Course Certifications</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Miguel Pereira</h1>
<p>Welcome to my certification showcase. Here are the courses I've completed to enhance my knowledge and skills.</p>
</header>
<main>
<!-- Tech Certifications Section -->
<section>
<h2>Tech Certifications</h2>
<div class="certificate">
<h3>Intro to Large Language Models (LLMs) Course</h3>
<p>Codecademy course (December 2024)</p>
<img src="images/intro_llms.png"
alt="Certificate for Course 'Intro to Large Language Models (LLMs)'">
</div>
<div class="certificate">
<h3>Build Chatbots with Python Skill Path</h3>
<p>Codecademy course (July 2024)</p>
<img src="images/chatbots_python_cert.png"
alt="Certificate for Course 'Build Chatbots with Python Skill Path'">
</div>
<div class="certificate">
<h3>Learn C++ Course</h3>
<p>Codecademy course (November 2023)</p>
<img src="images/cpp_cert.png" alt="Certificate for Course 'Learn C++ Course'">
</div>
<div class="certificate">
<h3>Machine Learning / AI Engineer Career Path</h3>
<p>Codecademy course (July 2023)</p>
<img src="images/ai_ml_eng_cert.png"
alt="Certificate for Course 'Machine Learning / AI Engineer Career Path'">
</div>
<div class="certificate">
<h3>Intermediate Machine Learning Skill Path</h3>
<p>Codecademy course (July 2023)</p>
<img src="images/int_ml_cert.png"
alt="Certificate for Course 'Intermediate Machine Learning Skill Path'">
</div>
<div class="certificate">
<h3>Learn Machine Learning Skill Path</h3>
<p>Codecademy course (May 2023)</p>
<img src="images/learn_ml_cert.png"
alt="Certificate for Course 'Learn Machine Learning Skill Path'">
</div>
<div class="certificate">
<h3>Resposive Web Design</h3>
<p>FreeCodeCamp course (September 2022)</p>
<img src="images/responsive_web_cert.png"
alt="Certificate for Course 'Resposive Web Design'">
</div>
<div class="certificate">
<h3>Scientific Computing with Python</h3>
<p>FreeCodeCamp course (July 2022)</p>
<img src="images/python_comp_fcc_cert.png"
alt="Certificate for Course 'Scientific Computing with Python'">
</div>
<div class="certificate">
<h3>Machine Learning with Python</h3>
<p>FreeCodeCamp course (May 2022)</p>
<img src="images/ml_python_fcc_cert.png"
alt="Certificate for Course 'Machine Learning With Python'">
</div>
</section>
<!-- Marketing / Personal Finance Certifications Section -->
<section>
<h2>Marketing / Personal Finance Certifications</h2>
<div class="certificate">
<h3>Personal Finance MBA</h3>
<p>Magma Studio course in partnership with Cofidis and Fidelidade (February - March 2024)</p>
<img src="images/pers_finance_mba_cert.png" alt="Certificate for Course 'Personal Finance MBA'">
</div>
<div class="certificate">
<h3>From Zero to Financial Freedom</h3>
<p>Moneylab course (January - May 2023)</p>
<img src="images/moneylab_cert.png" alt="Certificate for Course 'From Zero to Financial Freedom'">
</div>
<div class="certificate">
<h3>The Fundamentals of Digital Marketing</h3>
<p>Google Digital Garage course (February 2922)</p>
<img src="images/digital_marketing_cert.png"
alt="Certificate for Course 'The Fundamentals of Digital Marketing'">
</div>
</section>
</main>
<footer>
<p>© 2024 Your Name. All rights reserved.</p>
</footer>
</body>
</html>