Skip to content

Commit

Permalink
None
Browse files Browse the repository at this point in the history
  • Loading branch information
KuranosukeOhta authored Jul 19, 2021
1 parent ee26ca1 commit 102a03c
Show file tree
Hide file tree
Showing 11 changed files with 166 additions and 0 deletions.
7 changes: 7 additions & 0 deletions css/bootstrap.min.css

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions header.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark role-navgation d-print">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#kirikae" aria-label="navi">
<span class="navbar-toggler-icon">
</span>
</button>
<div class="collapse navbar-collapse" id="kirikae">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="home.html">現在の空き情報
</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="zisaku-print.html">Contact us
</a>
</li>
</ul>
</div>
<div class="collapse navbar-collapse" id="navbarText">
<span class="navbar-text ml-auto">市営体育館の開放種目をリアルタイムに表示するサイト
</span>
</div>
<a class="navbar-brand" href="home.html">
<img src="img/pin_icon.png" alt="" width="30" height="30">GymFinder
</a>
</nav>
Binary file added img/pin_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<!DOCTYPE html>
<html>

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css">

<title>GymFinder</title>

<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="img/pin_icon.png" type="image/x-icon">
<!--
<link href="https://fonts.googleapis.com/css?family=Anton rel">
<script src="https://kit.fontawesome.com/cbdb2a755c.js" crossorigin="anonymous"></script>
-->

<script src="main.js"></script>

</head>

<body style="padding-top:100px;">
<script src="js/jquery-3.6.0.slim.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>

<?php include('header.php'); ?>


<div class="container">


<img src="img/pin_icon.png" alt="">


<div class="row">
<div class="col"><h1>現在の空き情報</h1></div>
<div class="col">
<script src="js/DisplayDate.js"></script>
</div>
</div>
</div>
<!--
<div class="row">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d373591.16943388665!2d140.9671038130202!3d42.98499273915571!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x5f0ad4755a973633%3A0x33937e9d4687bad5!2z5YyX5rW36YGT5pyt5bmM5biC!5e0!3m2!1sja!2sjp!4v1618749866329!5m2!1sja!2sjp" width="800" height="600" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
<hr>
-->


<hr>

</div>











</body>
</html>
3 changes: 3 additions & 0 deletions js/DisplayDate.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const d = new Date();
let text = '<h1>'+d.toDateString()+d.toTimeString()+'</h1>'
document.write(text);
7 changes: 7 additions & 0 deletions js/bootstrap.bundle.min.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions js/jquery-3.6.0.slim.min.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

console.log('外部ファイルで読み込んだファイルです。');

document.write("<p>外部ファイルで読み込んだファイルです。</p>");
1 change: 1 addition & 0 deletions js/navbar.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added pdf/プログラミング勉強史.pdf
Binary file not shown.
48 changes: 48 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@

p {
font-family:"BIZ UDP明朝","BIZ UD明朝",'メイリオ', 'Meiryo', sans-serif;
}

a {
color: black;
}

.card-title {
font-weight: bolder;
}

.title {
font-family: "Corbel",'Anton', sans-serif;
font-size: 50px;
text-align: center;
}

.big_title {
font-family: "Corbel",'Anton', sans-serif;
font-size: 60px;
text-align: center;
}

.name {
font-family: "Corbel",'Anton', sans-serif;
font-size: 30px;
}

.text_center {
font-family: "Corbel",'Anton', sans-serif;
font-size: 20px;
text-align: center;
}

.center {
text-align: center;
}

hr {
border-color: rgb(43, 96, 255);

}

.mark {
background-color:rgba(140, 194, 255, 0.931);
}

0 comments on commit 102a03c

Please sign in to comment.