Skip to content

Commit

Permalink
safd
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteblank0 committed Jan 11, 2025
1 parent 639ba96 commit 5fa4054
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 4 deletions.
Binary file modified .DS_Store
Binary file not shown.
9 changes: 5 additions & 4 deletions contact/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,21 @@
<a href="../index.html">Home</a>
<a href="../projects/index.html">Projects</a>
<a href="../contact/index.html">Contact</a>
<a href="../cv/index.html">CV</a>
<a href="https://whiteblank0.github.io/portfolio/" target="_blank">GitHub</a>
</nav>
<h1>Contact</h1>
<form action="mailto:[email protected]" method="POST" enctype="text/plain">
<label for="email">Your Email:</label>
<label for="email">Email:</label>
<input id="email" name="email" type="email" required>
<br>
<label for="subject">Subject:</label>
<input id="subject" name="subject">
<br>
<label for="body">Message:</label>
<textarea id="body" name="body" rows="5"></textarea>
<label for="body">Body:</label>
<textarea id="body" name="body"></textarea>
<br>
<button>Send Message</button>
<button>Submit</button>
</form>
</body>
</html>
57 changes: 57 additions & 0 deletions cv/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yaoxi Li: CV</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<nav>
<a href="../index.html">Home</a>
<a href="../projects/index.html">Projects</a>
<a href="../contact/index.html">Contact</a>
<a href="../cv/index.html">CV</a>
<a href="https://whiteblank0.github.io/portfolio/" target="_blank">GitHub</a>
</nav>
<h1>Curriculum Vitae</h1>

<section id="summary">
<header>
<h2>Summary</h2>
</header>
<p>Detail-oriented Data Science sophomore passionate about collaboration, technology innovation, and solving real-world problems using data-driven insights.</p>
</section>

<section id="education">
<header>
<h2>Education</h2>
</header>
<article>
<h3>University of California, San Diego</h3>
<p>Bachelor of Science in Data Science</p>
<time datetime="2023">2023</time><time datetime="2026">2026</time>
</article>
</section>

<section id="skills">
<header>
<h2>Skills</h2>
</header>
<ul>
<li>Programming: Python, Java, SQL</li>
</ul>
</section>

<section id="projects">
<header>
<h2>Projects</h2>
</header>
<article>
<h3>Predictive Sales Analysis</h3>
<p>Developed a machine learning model to predict the cooking time of a dish.</p>
<a href="../projects/index.html">Learn more</a>
</article>
</section>
</body>
</html>
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<a href="index.html">Home</a>
<a href="projects/index.html">Projects</a>
<a href="contact/index.html">Contact</a>
<a href="../cv/index.html">CV</a>
<a href="https://whiteblank0.github.io/portfolio/" target="_blank">GitHub</a>
</nav>
<h1>Yaoxi Li</h1>
Expand Down
1 change: 1 addition & 0 deletions projects/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<a href="../index.html">Home</a>
<a href="../projects/index.html">Projects</a>
<a href="../contact/index.html">Contact</a>
<a href="../cv/index.html">CV</a>
<a href="https://whiteblank0.github.io/portfolio/" target="_blank">GitHub</a>
</nav>
<h1>Projects</h1>
Expand Down

0 comments on commit 5fa4054

Please sign in to comment.