-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (126 loc) · 4.46 KB
/
Copy pathindex.html
File metadata and controls
143 lines (126 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!doctype html>
<html lang="en">
<head>
<title>Kyra Ramirez</title>
<link rel="stylesheet" href="styles.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=Inter:wght@400;600;700;800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html"><span>Kyra</span> Ramirez</a>
</h1>
<ul class="nav-list">
<li><a class="active" href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<section class="hero">
<div class="hero-text">
<p class="eyebrow">Software Engineering • AI • Data Analytics</p>
<h1>Hi, I'm <span>Kyra Ramirez</span></h1>
<p class="hero-description">
I'm a Computer Science graduate from Cal Poly, currently pursuing my
Master of Science in Business Analytics there, interested in
building innovative software, AI tools, and data-driven solutions
that have real-world impact.
</p>
<div class="button-row">
<a href="resume.html" class="button">View Resume</a>
<a href="projects.html" class="button outline">View Projects</a>
<a href="contact.html" class="button outline">Contact Me</a>
</div>
<div class="social-row">
<a href="https://github.com/kyramirez" target="_blank">GitHub</a>
<a
href="https://www.linkedin.com/in/kyra-ramirez-aa8bb2233
"
target="_blank"
>LinkedIn</a
>
<a href="mailto:kyramirez22@gmail.com">Email</a>
</div>
</div>
<div class="hero-image-card">
<img src="IMG_9226.JPG" alt="Photo of Kyra Ramirez" />
</div>
</section>
<section class="section">
<h2>Featured Projects</h2>
<div class="projects-preview">
<div class="home-project-card">
<div class="project-icon">💬</div>
<h3>AI Chatbot Capstone</h3>
<p>
Full-stack chatbot that uses user assessment data and conversation
history to generate personalized responses.
</p>
<div class="mini-tags">
<span>React</span>
<span>Node.js</span>
<span>MongoDB</span>
<span>OpenAI API</span>
</div>
</div>
<div class="home-project-card">
<div class="project-icon">🌐</div>
<h3>Freebie Finders</h3>
<p>
Full-stack team web application where users can list and discover
free items in their community.
</p>
<div class="mini-tags">
<span>HTML</span>
<span>CSS</span>
<span>JavaScript</span>
<span>Teamwork</span>
<span>Project Management</span>
<span>Communication</span>
</div>
</div>
<div class="home-project-card">
<div class="project-icon">📊</div>
<h3>Network Traffic Classification</h3>
<p>
Machine learning project analyzing benign and non-benign network
traffic using classification and visualization techniques.
</p>
<div class="mini-tags">
<span>Python</span>
<span>scikit-learn</span>
<span>pandas</span>
</div>
</div>
</div>
<div class="center-button">
<a href="projects.html" class="button">View All Projects</a>
</div>
</section>
<section class="section skills-section">
<h2>Technical Skills</h2>
<div class="skills-grid">
<span>Python</span>
<span>Java</span>
<span>C</span>
<span>JavaScript</span>
<span>React</span>
<span>Node.js</span>
<span>MongoDB</span>
<span>Git</span>
<span>Machine Learning</span>
<span>Data Analytics</span>
<span>SQL</span>
</div>
</section>
</main>
<footer class="footer">© 2026 Kyra Ramirez</footer>
</body>
</html>