-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (84 loc) · 4.32 KB
/
index.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
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<script src="app.js"></script>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sofia Reyes Franco</title>
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="resumes.html">Resume</a>
</nav>
</header>
<main class="main-content">
<div class="left-column"> <!-- This div was added for the profile section -->
<div class="profile-section">
<img src="images/profile-photo.png" alt="Sofia Reyes Franco" class="profile-photo">
<h2>Sofia Reyes Franco</h2>
<p><b>Reach me at:</b></p>
<p>School Email: [email protected]</p>
<p>Personal Email: [email protected]</p>
<p>Tel: (949)-560-2276</p>
<div class="location">
<span class="icon">📍</span> Pittsburgh, PA
</div>
<div class="social-links">
<a href="https://github.com/sofiareyesf" class="icon"><img src="images/github-icon.png" alt="GitHub"></a>
<a href="https://www.linkedin.com/in/sofia-reyes-franco" class="icon"><img src="images/linkedin.png" alt="LinkedIn"></a>
</div>
</div>
</div>
<div class="right-column"> <!-- This div was added for the welcome and main content -->
<section id="welcome">
<h1>Hi, I'm Sofia!</h1>
<p>
I am a rising senior at Carnegie Mellon University studying Information Systems with a minor in Cybersecurity and International Conflict.
I have experience in cybersecurity consulting, specializing in transforming incoming client data into ECS format and working with Penetration
Testing Services to identify system weaknesses. I am also working towards obtaining my CISA, AWS, and CIPP certifications, with long-term plans
to attend law school in 5-10 years.<br><br>
When I'm not managing projects or enhancing my knowledge in cyber law, I enjoy visiting my parents in Miami to reconnect with my Cuban roots,
or traveling to Madrid, Spain, where I grew up, to visit friends.<br><br>
I will be graduating from Carnegie Mellon with my Bachelor's degree in May 2025, and <b>I am actively seeking a full-time position
in Software Development or Project Management starting Summer/Fall 2025</b>.
<br><br>
</p>
</section>
<section class="news-section">
<div class="news-item">
<h2>Latest News</h2>
<ul>
<li><strong>August 10th, 2024</strong> - I finished my internship with Forvis Mazars,
having gained experience transforming incoming client data into ECS format by mapping
data fields to standardized ECS fields, ensuring consistent representation and enhancing
tool compatibility. Also worked with Penetration Testing Services
and SentinelOne to identify weaknesses within client systems. </li>
<br>
<li><strong>June 1st, 2024</strong> - I was invited to National Intern Week (NIT)
in New York Ciy, where I learned about what consulting
entails on a day-to-day basis.</li>
<br>
<li><strong>May 30th, 2024</strong> - I began my internship
at Forvis Mazars, a top 10 accounting firm, as a Risk Consultant.</li>
<br>
<li><strong>May 5th, 2024</strong> - I was nominated by the advising staff
at Carnegie Mellon University's Information Systems department to be an
Information Systems ambassador and the main events planner as a part of a 10-person board.</li>
<br>
</ul>
</div>
</section>
<br>
<br>
</div>
</main>
<footer>
<p>Sofia Reyes Franco © 2024</p>
</footer>
</body>
</html>