-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
81 lines (64 loc) · 4.69 KB
/
page.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="./index.css" />
<!-- FontAwesome Link -->
<script src="https://kit.fontawesome.com/7b924d2756.js" crossorigin="anonymous"></script>
<!-- Google Fonts -->
<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=Inter:wght@100;200;300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
<title>Anthony Nanfito's Portfolio</title>
<link rel="icon" href="./media/ProfilePic_Square.jpg" />
</head>
<body>
<!-- NAVBAR -->
<nav id="navbar" class="nav">
<ul class="nav-list">
<!-- About -->
<li>
<a href="index.html" id="about-link">Home</a>
</li>
<!-- Projects -->
<li>
<a href="index.html#projects" id="projects-link">Projects</a>
</li>
<!-- Contact -->
<li>
<a href="index.html#contact" id="contact-link">Contact</a>
</li>
<!-- Blog -->
<li>
<a href="https://blog.ananfito.dev/" target="_blank" id="blog-link">Blog</a>
</li>
</ul>
</nav>
<!-- CONTENT SECTION -->
<section id="" class="container">
<h2 class="section-header">Header Title Goes Here</h2>
<p>During my undergraduate studies in mathematics, I discovered the creativity and joy that comes from solving problems. I thought this would be best put into practice as a teacher of mathematics.</p>
<p>After 10 years in the classroom, I have come to realize that the problems I encounter as a teacher are not the same kind of problems I enjoyed solving as an undergraduate. However, I discovered that building things with code presents the types of problems I do want to solve.</p>
<p>In late 2020, I started exploring the world of coding by studying Python and data analysis. By 2022, I was diving deep into web development and learning how to create interactive web applications with JavaScript.</p>
<p>With my newfound programming skills, I built my first web app — <a href="https://github.com/ananfito/mathemaquizzo/" class="link" target="_blank">a mathematical quiz app</a> — and I used <a href="https://blog.ananfito.dev/using-python-to-make-my-teaching-job-easier" class="link" target="_blank">a Python script</a> which helped me more effectively communicate grades to my students. Both these projects presented challenges, but I enjoyed every minute of solving them. It reminded me of the joy I experienced when studying mathematics as an undergraduate.</p>
<p>Since completing these inaugural projects, I have continued to learn and grow. In August 2023, I graduated from the <a href="https://scrimba.com/certificate/uerWNntQ/gfrontend" class="link" target="_blank">Scrimba Frontend Career Path</a>, built projects with React, and continued to learn new skills such as deepening my understanding of data science. Currently, I am seeking a full-time role where I can bring my joy of problem-solving and technical abilities to have an impact and create prosperous outcomes for buisness objectives.</p>
<div class="list" id="">
<h3>Skills</h3>
<ul>
<li><strong>Data Analytics:</strong> Proficient in Python, R, SQL, and Tableau for data collection, transformation, and visualization</li>
<li><strong>Web Development:</strong> HTML, CSS, JavaScript, React, Vite, Git, GitHub, REST APIs</li>
<li><strong>Mathematics & Statistics:</strong> Strong background in algebra, calculus, discrete mathematics, and statistical modeling, with hands-on experience in data interpretation and analysis.</li>
<li><strong>Communication & Collaboration:</strong> Proven ability to simplify complex concepts and communicate them to both technical and non-technical audiences, fostering collaboration and driving project success.</li>
<li><strong>Project Management:</strong> Experienced in backward planning, task prioritization, and managing timelines to meet goals efficiently.</li>
</ul>
<p>For more details on my work experience and education, connect with me on <a class="link" target="_blank" href="https://linkedin.com/in/anthonynanfito">LinkedIn</a>.</p>
</div>
</section>
<footer>
<p>Thanks for stopping by.</p>
</footer>
</body>
</html>