Skip to content

Commit

Permalink
feat: website done
Browse files Browse the repository at this point in the history
  • Loading branch information
YaseminAkkaya committed Oct 6, 2023
1 parent a52ec8b commit ca4e9cc
Show file tree
Hide file tree
Showing 8 changed files with 460 additions and 63 deletions.
Binary file added YaseminAkkaya.github.io/Profile.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added YaseminAkkaya.github.io/Project.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 10 additions & 9 deletions YaseminAkkaya.github.io/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,25 @@
<html>
<head>
<title>Yasemin's Webpage!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class= "navbar">
<h1 class= "logo">
<a href= "index.html">YaseminAkkaya</a>
<ul class= "nav-list">
<li><a href= "index.html">Home</a></li>
<li><a href= "blog.html">Blog</a></li>
<li><a href= "portfolio.html">Portfolio</a></li>
<li><a href= "resume.html">Resume</a></li>
<li><a href= "contact.html">Contact</a></li>
</ul>
</h1>
<ul class= "nav-list">
<li><a href= "index.html">Home</a></li>
<li><a href= "blog.html">Blog</a></li>
<li><a href= "portfolio.html">Portfolio</a></li>
<li><a href= "resume.html">Resume</a></li>
<li><a href= "contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class= "page-title">Blog</h1>
<p>Hello World! This is my website.</p>
<p class= "blog-text">More to come...</p>
</main>
<footer>© 2023 Yasemin's Webpage | All Rights Reserved</footer>
<footer class="footer">© 2023 Yasemin's Webpage | All Rights Reserved</footer>
</body>
</html>
45 changes: 24 additions & 21 deletions YaseminAkkaya.github.io/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,39 @@
<html>
<head>
<title>Yasemin's Webpage!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class= "navbar">
<h1 class= "logo">
<a href= "index.html">YaseminAkkaya</a>
<ul class= "nav-list">
<li><a href= "index.html">Home</a></li>
<li><a href= "blog.html">Blog</a></li>
<li><a href= "portfolio.html">Portfolio</a></li>
<li><a href= "resume.html">Resume</a></li>
<li><a href= "contact.html">Contact</a></li>
</ul>
</h1>
<ul class= "nav-list">
<li><a href= "index.html">Home</a></li>
<li><a href= "blog.html">Blog</a></li>
<li><a href= "portfolio.html">Portfolio</a></li>
<li><a href= "resume.html">Resume</a></li>
<li><a href= "contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class= "page-title">Contact</h1>
<p>Fill out this form to contact me!</p>
<form id="contact-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br><br>
<div class = contact-page>
<h1 class= "page-title">Contact</h1>
<p>Fill out this form to contact me!</p>
<form id="contact-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br><br>

<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br><br>

<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea><br><br>

<input type="submit" value="Submit">
</form>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br><br>

<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea><br><br>

<input type="submit" value="Submit">
</form>
</div>
</main>
<footer>© 2023 Yasemin's Webpage | All Rights Reserved</footer>
<footer class="footer">© 2023 Yasemin's Webpage | All Rights Reserved</footer>
</body>
</html>
19 changes: 10 additions & 9 deletions YaseminAkkaya.github.io/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,29 @@
<html>
<head>
<title>Yasemin's Webpage!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class= "navbar">
<h1 class= "logo">
<a href= "index.html">YaseminAkkaya</a>
<ul class= "nav-list">
<li><a href= "index.html">Home</a></li>
<li><a href= "blog.html">Blog</a></li>
<li><a href= "portfolio.html">Portfolio</a></li>
<li><a href= "resume.html">Resume</a></li>
<li><a href= "contact.html">Contact</a></li>
</ul>
</h1>
<ul class= "nav-list">
<li><a href= "index.html">Home</a></li>
<li><a href= "blog.html">Blog</a></li>
<li><a href= "portfolio.html">Portfolio</a></li>
<li><a href= "resume.html">Resume</a></li>
<li><a href= "contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class= "page-title">Welcome to Yas's Website!</h1>
<h1 class= "page-title">Welcome to My Website!</h1>
<div class= "about">
<div class= "about-image">
<img src= "Profile.jpg" alt= "picture of me">
</div>
<div class= "about-text">
<p>I'm a second year <strong>computer science</strong> student at Cal Poly SLO who is
<p>I'm a second year <strong>Computer Science</strong> major at Cal Poly SLO who is
pursuing a minor in <em>economics</em>! I have a lot of experience with front-end development,
but I am currently interested in <strong>A.I.</strong> I am passionate about using my CS skills to inspire young,
particularly female, coders and to give back to the community!
Expand Down
17 changes: 9 additions & 8 deletions YaseminAkkaya.github.io/portfolio.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,26 @@
<html>
<head>
<title>Yasemin's Webpage!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class= "navbar">
<h1 class= "logo">
<a href= "index.html">YaseminAkkaya</a>
<ul class= "nav-list">
<li><a href= "index.html">Home</a></li>
<li><a href= "blog.html">Blog</a></li>
<li><a href= "portfolio.html">Portfolio</a></li>
<li><a href= "resume.html">Resume</a></li>
<li><a href= "contact.html">Contact</a></li>
</ul>
</h1>
<ul class= "nav-list">
<li><a href= "index.html">Home</a></li>
<li><a href= "blog.html">Blog</a></li>
<li><a href= "portfolio.html">Portfolio</a></li>
<li><a href= "resume.html">Resume</a></li>
<li><a href= "contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class= "page-title">Portfolio</h1>
<div class= "project">
<a href="index.html">
<img src="project-screenshot.jpg" alt="Project Screenshot" width="300" height="200">
<img src="Project.png" alt="Project Screenshot" width="300" height="200">
</a>
<div class= "project-details">
<p class= "project-name">My Personal Website</p>
Expand Down
109 changes: 93 additions & 16 deletions YaseminAkkaya.github.io/resume.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,53 +2,130 @@
<html>
<head>
<title>Yasemin's Webpage!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class= "navbar">
<h1 class= "logo">
<a href= "index.html">YaseminAkkaya</a>
<ul class= "nav-list">
<li><a href= "index.html">Home</a></li>
<li><a href= "blog.html">Blog</a></li>
<li><a href= "portfolio.html">Portfolio</a></li>
<li><a href= "resume.html">Resume</a></li>
<li><a href= "contact.html">Contact</a></li>
</ul>
</h1>
<ul class= "nav-list">
<li><a href= "index.html">Home</a></li>
<li><a href= "blog.html">Blog</a></li>
<li><a href= "portfolio.html">Portfolio</a></li>
<li><a href= "resume.html">Resume</a></li>
<li><a href= "contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class= "page-title">Resume</h1>
<div class= "resume">
<section class= "section">
<h2 class= "section-title">Education</h2>
<div class= "entry">
<h3 class= "entry-title"></h3>
<p class= "entry-info"></p>
<h3 class= "entry-title"> B.S. Computer Science
</h3>
<p class= "entry-info">
<strong>Expected Graduation:</strong> June 2026<br>
<strong>California Polytechnic State University |</strong> San Luis Obispo, CA</p>
</div>
</section>
<section class= "section">
<h2 class= "section-title">Experience</h2>
<div class= "entry">
<h3 class= "entry-title"></h3>
<p class= "entry-info"></p>
<h3 class= "entry-title">MalwareBytes, Santa Clara, CA - Front End Development Intern</h3>
<p class= "entry-info">
<ul>
<li>Created map feature displaying cyber-security remote intrusions in Nebula-Retina, a React-based web application</li>
<li>Learned key concepts in threat detection and incident response to support the team in identifying potential security threats</li>
<li>Acquired skills in backlog management, user story creation, and task prioritization, for successful delivery of software features</li>
</ul>
</p>
<p class= "entry-description"></p>
</div>
<div class= "entry">
<h3 class= "entry-title">P.I. Works, Reston, VA - I.T. Intern</h3>
<p class= "entry-info">
<ul>
<li>Worked in I.T. department to optimize business systems and operations by creating various software and automated applications</li>
<li>Created workflows, applications, and reports for the company’s departments using Microsoft power platforms</li>
</ul>
</p>
<p class= "entry-description"></p>
</div>
<div class= "entry">
<h3 class= "entry-title">FizzySoaps, San Ramon, CA - Website Designer</h3>
<p class= "entry-info">
https://fizzysoaps.shop/<br>
<ul>
<li>Increased user checkout (conversion rate) growth rate by 1% each month</li>
</ul>
</p>
<p class= "entry-description"></p>
</div>
<div class= "entry">
<h3 class= "entry-title">The Coder School, San Ramon, CA - Code Instructor</h3>
<p class= "entry-info">
<ul>
<li>Designed 50+ Scratch and Python projects for beginner students to create more engaging classes</li>
<li>Instructed elementary to high school aged students in Scratch and Python in 1 on 1 lessons</li>
<li>Built female-friendly curriculum to encourage young, female students’ interest in coding</li>
</ul>
</p>
<p class= "entry-description"></p>
</div>
</section>
<section class= "section">
<h2 class= "section-title">Skills</h2>
<ul class= "skill-list"></ul>
<ul class= "skill-list">
<li>React</li>
<li>TypeScript</li>
<li>Node</li>
<li>Jest</li>
<li>Javascript</li>
<li>HTML</li>
<li>CSS</li>
<li>Jupyter Notebooks</li>
<li>TensorFlow</li>
<li>Java</li>
<li>Python</li>
<li>C</li>
<li>R</li>
</ul>
</section>
<section class= "section">
<h2 class= "section-title">Projects</h2>
<div class= "entry">
<h3 class= "entry-title"></h3>
<p class= "entry-info"></p>
<p class= "entry-description"></p>
<h3 class= "entry-title">Nebula Retina Web Application</h3>
<p class= "entry-info">
MalwareBytes web application which allows users and companies to monitor
web attacks within organizations
</p>
<p class= "entry-description">Created web attack map using React, TypeScript, and CSS styling to display targets and sources
of web intrusions
</p>
</div>
<div class= "entry">
<h3 class= "entry-title">Fizzy Soaps Website</h3>
<p class= "entry-info">
Website for handmade soap business. Products are ordered directly through site.
</p>
<p class= "entry-description">
Created using <em>Liquid</em> via <em>Shopify</em>. Coded 100+ lines of CSS and HTML for FizzySoaps website to add menus, font themes, and page templates.
</p>
</div>
</section>
<section class= "section">
<h2 class= "section-title">Coursework</h2>
<ul class= "course-list"></ul>
<ul class= "course-list">
<li>DeAnza College: Web Page Development</li>
<li>Foothill College: JavaScript for Programmers</li>
<li>Cal Poly: Machine and Assembly Language Programming</li>
<li>Cal Poly: Systems Programming</li>
<li>Cal Poly: Object-Oriented Programming and Design</li>
<li>Cal Poly: Data Structures and Algorithms</li>
<li>Diablo Valley College: Introduction to Programming </li>
</ul>
</section>
</div>
</main>
Expand Down
Loading

0 comments on commit ca4e9cc

Please sign in to comment.