728x90
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ollama 관련 가이드 목록</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
margin: 0;
padding: 20px;
background-color: #f8f9fa;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
}
h1 {
color: #2563eb;
text-align: center;
margin-bottom: 40px;
}
.table-wrapper {
overflow-x: auto;
margin-bottom: 30px;
-webkit-overflow-scrolling: touch;
}
table {
width: 100%;
border-collapse: collapse;
background-color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 12px;
overflow: hidden;
}
thead th {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
color: white;
padding: 20px 16px;
text-align: left;
font-weight: 600;
font-size: 16px;
}
tbody td {
padding: 18px 16px;
border-bottom: 1px solid #e5e7eb;
vertical-align: top;
}
tbody tr:hover {
background-color: #f0f9ff;
}
.icon {
font-size: 24px;
margin-right: 12px;
vertical-align: middle;
}
.title {
font-weight: 600;
font-size: 16px;
color: #1f2937;
margin: 0;
}
.url {
color: #3b82f6;
text-decoration: none;
font-size: 14px;
word-break: break-all;
}
.url:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.container {
padding: 10px;
}
thead th,
tbody td {
padding: 12px 8px;
font-size: 14px;
}
.icon {
font-size: 20px;
}
}
@media (max-width: 480px) {
table {
font-size: 13px;
}
.title {
font-size: 15px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>🧠 Ollama 관련 가이드 목록</h1>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>📋 번호</th>
<th>📖 제목 및 링크</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>1</strong></td>
<td>
<div>
<div class="title"><span class="icon">⚙️</span>Ollama 커스텀 경로 설치 가이드(Ubuntu 22.04)</div>
<a href="https://couplewith.tistory.com/903" class="url" target="_blank">https://couplewith.tistory.com/903</a>
</div>
</td>
</tr>
<tr>
<td><strong>2</strong></td>
<td>
<div>
<div class="title"><span class="icon">⚡</span>Ollama를 이용한 LLM성능 테스트</div>
<a href="https://couplewith.tistory.com/904" class="url" target="_blank">https://couplewith.tistory.com/904</a>
</div>
</td>
</tr>
<tr>
<td><strong>3</strong></td>
<td>
<div>
<div class="title"><span class="icon">🔗</span>Ollama와 DeepSeek 모델 LLM RAG 학습</div>
<a href="#" class="url" target="_blank">예정</a>
</div>
</td>
</tr>
<tr>
<td><strong>4</strong></td>
<td>
<div>
<div class="title"><span class="icon">🛡️</span>Ollama와 DeepSeek 기반 비식별화 기능 개발</div>
<a href="#" class="url" target="_blank">예정</a>
</div>
</td>
</tr>
<tr>
<td><strong>5</strong></td>
<td>
<div>
<div class="title"><span class="icon">🛡️</span>DeepSeek기반 LLM Agent 기능 개발</div>
<a href="#" class="url" target="_blank">예정</a>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>
Ollama 커스텀 경로 설치 가이드
728x90
반응형