jihwanwoo/jihwanwoo.github.io
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patents - Jihwan Woo</title>
<style>
body {
font-family: 'Times New Roman', Times, serif;
line-height: 1.6;
margin: 0;
padding: 0;
background: #ffffff;
color: #333;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}
.header {
background: #f8f9fa;
padding: 2rem;
border-bottom: 3px solid #003366;
margin-bottom: 2rem;
}
.header h1 {
margin: 0;
color: #003366;
font-size: 2.5rem;
font-weight: normal;
}
.nav {
background: #003366;
padding: 1rem 0;
margin-bottom: 2rem;
}
.nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.nav li {
margin: 0 1rem;
}
.nav a {
color: white;
text-decoration: none;
font-size: 1rem;
padding: 0.5rem 1rem;
border-radius: 3px;
}
.nav a:hover {
background-color: #0066cc;
}
.section h2 {
color: #003366;
border-bottom: 2px solid #003366;
padding-bottom: 0.5rem;
margin-bottom: 1.5rem;
font-size: 1.8rem;
}
.patent-item {
margin-bottom: 2rem;
padding: 1.5rem;
background: #f8f9fa;
border-left: 4px solid #0066cc;
}
.patent-title {
font-size: 1.2rem;
font-weight: bold;
color: #003366;
margin-bottom: 0.5rem;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Jihwan Woo</h1>
</div>
<nav class="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="patents.html">Patents</a></li>
</ul>
</nav>
<div class="section">
<h2>Patents</h2>
<div class="patent-item">
<div class="patent-title">AI-Powered Financial Risk Assessment System</div>
<p>Patent application for AI-based financial risk assessment using social network analysis.</p>
</div>
<div class="patent-item">
<div class="patent-title">Technology Valuation Framework</div>
<p>Machine learning-based technology valuation system for investment decisions.</p>
</div>
</div>
</div>
</body>
</html>