Browse Source

寝るのでいったん Push

NIZIKA_DEV-003
miteruzo 1 year ago
parent
commit
251237f0e4
8 changed files with 40 additions and 5 deletions
  1. +1
    -1
      forms/about.frm.php
  2. +2
    -1
      forms/header.frm.php
  3. +19
    -0
      forms/licence.frm.php
  4. +1
    -1
      forms/top.frm.php
  5. +4
    -0
      licence.php
  6. +1
    -1
      products/forms/index.frm.php
  7. +1
    -1
      products/index.php
  8. +11
    -0
      styles/style.css

+ 1
- 1
forms/about.frm.php View File

@@ -2,7 +2,7 @@
<html lang="ja">
<head>
<meta charset="utf8" />
<link rel="stylesheet" href="./styles/index.css" />
<link rel="stylesheet" href="./styles/style.css" />
<title>ニジカもんすたぁ!! - このサイトについて</title>
</head>



+ 2
- 1
forms/header.frm.php View File

@@ -1,7 +1,8 @@
<header>
<ul>
<ul id="global-menu">
<li><a href="/top.php">トップ</a></li>
<li><a href="/products">作品</a></li>
<li><a href="/licence.php">社会契約</a></li>
<li><a href="/about.php">このサイトについて</a></li>
</ul>
</header>


+ 19
- 0
forms/licence.frm.php View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf8" />
<link rel="stylesheet" href="./styles/style.css" />
<title>ニジカもんすたぁ!! - 社会契約</title>
</head>

<body>
<?php require_once './forms/header.frm.php' ?>

<main>
<h1>社会契約</h1>
</main>

<?php require_once './forms/footer.frm.php' ?>
</body>
</html>


+ 1
- 1
forms/top.frm.php View File

@@ -2,7 +2,7 @@
<html lang="ja">
<head>
<meta charset="utf8" />
<link rel="stylesheet" href="./styles/index.css" />
<link rel="stylesheet" href="./styles/style.css" />
<title>ニジカもんすたぁ!! - トップ</title>
</head>



+ 4
- 0
licence.php View File

@@ -0,0 +1,4 @@
<?php

require_once './forms/licence.frm.php';


+ 1
- 1
products/forms/index.frm.php View File

@@ -2,7 +2,7 @@
<html lang="ja">
<head>
<meta charset="utf8" />
<link rel="stylesheet" href="../styles/index.css" />
<link rel="stylesheet" href="../styles/style.css" />
<title>ニジカもんすたぁ!! - 作品</title>
</head>



+ 1
- 1
products/index.php View File

@@ -1,4 +1,4 @@
<?php

require_once './forms/index.frm';
require_once './forms/index.frm.php';


+ 11
- 0
styles/style.css View File

@@ -0,0 +1,11 @@
#global-menu
{
display: flex;
justify-content: space-evenly;
}

#global-menu > li
{
list-style: none;
}


Loading…
Cancel
Save