creation of about page.

This commit is contained in:
sweatshirt0 2023-01-26 23:16:51 -05:00
parent 6b8a1ef2e3
commit ad0e00b99b
2 changed files with 34 additions and 0 deletions

17
pages/about.html Normal file
View File

@ -0,0 +1,17 @@
<html>
<head>
<meta charset="UTF-8" />
<title>About Us</title>
</head>
<body>
<div class="whole-wrapper">
<div class="nav-wrapper">
<a class="home" href="/">Home</a>
<a class="about" href="/about">About</a>
</div>
<div class="title-wrapper">
<h1 class="about-title">About Us</h1>
</div>
</div>
</body>
</html>

17
pages/index.html Normal file
View File

@ -0,0 +1,17 @@
<html>
<head>
<meta charset="UTF-8" />
<title>Libcasa-Chan</title>
</head>
<body>
<div class="whole-wrapper">
<div class="nav-wrapper">
<a class="home" href="/">Home</a>
<a class="about" href="/about">About</a>
</div>
<div class="title-wrapper">
<h1 class="title">Home</h1>
</div>
</div>
</body>
</html>