Refactoring

This commit is contained in:
d3m0k1d
2025-11-20 17:21:44 +03:00
parent f2ecc5cc1a
commit e0c206cfc5
12 changed files with 0 additions and 63 deletions

25
guestbook/index.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>d3m0k1d</title>
<link rel="icon" href="/frontend/homepage/media/68747470733a2f2f63646e2e776f726c64766563746f726c6f676f2e636f6d2f6c6f676f732f6769742d69636f6e2e737667.svg" type="image/x-icon">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navigation">
<nav class="home-btn">
<a href="/">Home</nav>
<nav class="contacts-btn">
<a href="/contacts">Contacts</a>
</nav>
<nav class="guest-btn">
<a href="/guestbook">Guestbook</a>
</nav>
<nav class="posts-btn">
<a href="/posts">Posts</a>
</nav>
</div>

31
guestbook/style.css Normal file
View File

@@ -0,0 +1,31 @@
body
{
background-color: black;
font-family: commit mono, monospace;
color: white;
}
a
{
text-decoration: none;
color: white;
}
.navigation
{
font-size: 18px;
width: 50%;
margin: auto;
display: flex;
justify-content: center;
padding-top: 1%;
}
.home-btn,
.posts-btn,
.guest-btn,
.contacts-btn {
margin-left: 6.25%;
margin-right: 6.25%;
}