Spaces:
Running
Running
Update 2.html
Browse files
2.html
CHANGED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="ja">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<title>操作手順</title>
|
| 6 |
+
<style>
|
| 7 |
+
body {
|
| 8 |
+
font-family: Arial, sans-serif;
|
| 9 |
+
line-height: 1.8;
|
| 10 |
+
padding: 20px;
|
| 11 |
+
}
|
| 12 |
+
h1 {
|
| 13 |
+
color: #333;
|
| 14 |
+
}
|
| 15 |
+
ol {
|
| 16 |
+
padding-left: 20px;
|
| 17 |
+
}
|
| 18 |
+
a {
|
| 19 |
+
color: #1a73e8;
|
| 20 |
+
text-decoration: none;
|
| 21 |
+
}
|
| 22 |
+
a:hover {
|
| 23 |
+
text-decoration: underline;
|
| 24 |
+
}
|
| 25 |
+
.input-example {
|
| 26 |
+
background: #f8f8f8;
|
| 27 |
+
padding: 10px;
|
| 28 |
+
border: 1px solid #ddd;
|
| 29 |
+
margin: 10px 0;
|
| 30 |
+
font-family: monospace;
|
| 31 |
+
}
|
| 32 |
+
img {
|
| 33 |
+
max-width: 100%;
|
| 34 |
+
height: auto;
|
| 35 |
+
margin-top: 20px;
|
| 36 |
+
}
|
| 37 |
+
</style>
|
| 38 |
+
</head>
|
| 39 |
+
<body>
|
| 40 |
+
|
| 41 |
+
<h1>操作手順</h1>
|
| 42 |
+
|
| 43 |
+
<ol>
|
| 44 |
+
<li>
|
| 45 |
+
<a href="https://huggingface.co/login" target="_blank">ログインページ</a>を開く
|
| 46 |
+
</li>
|
| 47 |
+
<li>
|
| 48 |
+
以下を入力する:
|
| 49 |
+
<div class="input-example">
|
| 50 |
+
ユーザー名:<script>document.write(localStorage.getItem("no"));</script><br>
|
| 51 |
+
パスワード:!Aaaaaa0
|
| 52 |
+
</div>
|
| 53 |
+
</li>
|
| 54 |
+
<li>
|
| 55 |
+
<a href="https://huggingface.co/spaces/VAST-AI/TripoSG" target="_blank">TripoSG</a>を開く
|
| 56 |
+
</li>
|
| 57 |
+
<li>
|
| 58 |
+
以下の画像を確認:
|
| 59 |
+
<div>
|
| 60 |
+
<img src="img1.png" alt="手順画像">
|
| 61 |
+
</div>
|
| 62 |
+
</li>
|
| 63 |
+
</ol>
|
| 64 |
+
|
| 65 |
+
</body>
|
| 66 |
+
</html>
|