-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
639ba96
commit 5fa4054
Showing
5 changed files
with
64 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters