-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 1.86 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>RizeOffice</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 onclick="window.open('https://github.com/KajizukaTaichi/RizeOffice/')" class="display-4">RizeOffice</h1>
<p class="lead">
Modern usable office suites. Built on Stack technology.
</p>
<hr class="my-4">
<p>© 2024 梶塚太智. All rights reserved</p>
</div>
</div>
<!-- プロジェクト -->
<div class="container mt-5">
<h2 class="mb-4">Apps</h2>
<div class="row">
<!-- プロジェクト カード1 -->
<div class="col-md-4 mb-4">
<div class="card project-card">
<div class="card-body">
<h5 class="card-title">Calc</h5>
<p class="card-text">The spread-sheet apps. It makes you easy to analyze and aggregate data efficiently.</p>
<a href="calc/" class="btn btn-primary">Open</a>
</div>
</div>
</div>
<p>This project is still alpha-version. Other apps is coming soon!</p>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
</body>
</html>