This website works better with JavaScript.
Home
Explore
Register
Sign In
miteruzo
/
nizika
Watch
0
Star
0
Fork
0
Code
Issues
5
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
寝るのでいったん Push
NIZIKA_DEV-003
miteruzo
1 year ago
parent
87def12aa2
commit
251237f0e4
8 changed files
with
40 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
forms/about.frm.php
+2
-1
forms/header.frm.php
+19
-0
forms/licence.frm.php
+1
-1
forms/top.frm.php
+4
-0
licence.php
+1
-1
products/forms/index.frm.php
+1
-1
products/index.php
+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;
}
Write
Preview
Loading…
Cancel
Save