Skip to content

Commit

Permalink
bocchi
Browse files Browse the repository at this point in the history
  • Loading branch information
naisu-dev committed Aug 30, 2024
1 parent 9f12536 commit 17efcb3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ <h1 style="padding-top: 1em; padding-bottom: 1em;">ぼっちちゃん!結婚
<p>↓最近買ったアルバム↓</p>
<a href="https://bocchi.rocks/" target="_blank"><img src="bocchialbum.jpg" alt="ぼっち・ざ・ろっく!" class="img-fluid"></a>
<script>
var bocchi = document.createElement("img");
var i = Math.floor(Math.random() * 68) + 1;
var path = "img/bocchi" + i + ".jpg";
let bocchi = document.createElement("img");
let i = Math.floor(Math.random() * 68) + 1;
let path = "img/bocchi" + i + ".jpg";
bocchi.src = path;
let body = document.getElementById("body");
body.append(bocchi);
Expand Down
4 changes: 2 additions & 2 deletions ogp.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!DOCTYPE html>
<html lang="ja" dir="ltr">
<head>
<head id="head">
<meta charset="utf-8">
<title></title>
</head id="head">
</head>
<body>
<script>
var bocchi = document.createElement("meta");
Expand Down

0 comments on commit 17efcb3

Please sign in to comment.