-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 1.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html data-bs-theme="dark" lang="ja">
<head>
<title>FediShare</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<link href="index.css" rel="stylesheet"/>
</head>
<noscript> Please turn on JavaScript </noscript>
<body>
<h1 id="title">Fedishare</h1>
<input type="text" class="form-control" id="titleText" placeholder="FediverseとXの違い" />
<textarea class="form-control" id="sendText" rows="3" placeholder="主な違いは・・・"></textarea>
<button onclick="send()" class="btn btn-primary" id="btner">Publish</button>
<hr>
<h2>なにこれ</h2>
<p>Fediverseの分散化SNS/Nostrリレーにシェアするためのツールです</p>
</body>
<script src="index.js"></script>
</html>