-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (72 loc) · 3.23 KB
/
index.html
File metadata and controls
78 lines (72 loc) · 3.23 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ramon Mora's Python Portfolio</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet"></head>
<body>
<!-- If you feel confident, you can try putting your image in here. -->
<!-- <img class="profile-image " src="assets/images/1654699612942.jfif" alt="profile picture"> -->
<h1>Ramon Mora's Python Portfolio</h1> <!-- Put your name here -->
<div>
<!-- Put a paragraph about yourself here. It doesn't have to be super long. -->
<p>This portfolio is focuses on my own Python development as a developer. Here you will find projects targeting software engineering principles.</p>
<p> My portfolio which focuses more on Data Science can be found here: <a href="https://yeahright711.github.io/">Ramon's Data Science github.io</a> </p>
</div>
<p>Topics covered thus far are:</p>
<div class="table">
<table>
<thead>
<tr>
<th>Topic Category</th>
<th>Covered Topics</th>
</tr>
</thead>
<tbody>
<!-- Replace with your own list of concepts and topics -->
<tr>
<!-- remove the a href and </a> tags, leave only the <td></td> with the text in the middle being what you want -->
<td>Fundamental python concept, for loops, if statements</td>
</tr>
<tr>
<td>OOP programming, GUI, TKinter, Turtle</td>
</tr>
<tr>
<td>APIs, Exception raising, JSON, Twilio, SMTP</td>
</tr>
<tr>
<td>BeautifulSoup, Selenium, front-end development, Spotify API</td>
</tr>
<tr>
<td>Deployment with Flask, using Bootstrap, SQLite database, REST API development</td>
</tr>
<tr>
<td>Data manipulation with Pandas and Numpy, visualization with Matplotlib, Plotly, and Seaborn, Regression with sklearn</td>
</tr>
<tr>
</tr>
<td>Multiple Python portfolio projects made from scratch to showcase various skills</td>
</tr>
</tbody>
</table>
<hr>
<div class="contact-me">
<h2>Get In Touch</h2>
<h3>Contact me below.</h3>
<p>You can find me via email and I will respond within 24-48 hours or reach out to me on social media for a faster response!</p>
<!-- Replace with your own email, test to see if the button works -->
<a class="btn" href="mailto:ramonmora711@gmail.com">CONTACT ME</a>
</div>
</div>
<!-- Replace with your own links -->
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/in/ramon-mora-538268274/" target="_blank">LinkedIn</a>
<a class="footer-link" href="https://github.com/yeahright711" target="_blank">GitHub</a>
<p class="copyright">© 2023 Ramon Mora.</p>
</div>
</div>
</body>