diff options
| -rw-r--r-- | _.png | bin | 0 -> 901 bytes | |||
| -rw-r--r-- | about.html | 51 | ||||
| -rw-r--r-- | contact.html | 2 | ||||
| -rw-r--r-- | index.html | 2 | ||||
| -rw-r--r-- | styles/def.css (renamed from style.css) | 1 | ||||
| -rw-r--r-- | template.html | 2 |
6 files changed, 55 insertions, 3 deletions
| Binary files differ diff --git a/about.html b/about.html new file mode 100644 index 0000000..5c647f5 --- /dev/null +++ b/about.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <title>mallocd.com</title> + + <link rel="stylesheet" href="styles/def.css" type="text/css"> + + <link rel="preconnect" href="https://fonts.googleapis.com"> + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> + <link href="https://fonts.googleapis.com/css2?family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap" rel="stylesheet"> +</head> + +<body> + + <header> + <h1><a href="index.html" class="h_mallocd">: mallocd :</a></h1> + </header> + + <nav id="side-bar"> + <div> + <p class="side-title">pages:</p> + <ul> + <li><a href="about.html">> about</a></li> + <li><a href="projects.html">> projects</a></li> + <li><a href="docs/sxwm-dev.html">> docs</a></li> + <li><a href="contact.html">> contact</a></li> + </ul> + + <p class="side-title">projects:</p> + <ul> + <li><a href="projects/asimotive3d.html">> asimotive3d/</a></li> + <li><a href="projects/sxwm.html">> sxwm/</a></li> + <li><a href="projects/sxbar.html">> sxbar/</a></li> + <li><a href="projects/xpet.html">> xpet/</a></li> + </ul> + </div> + </nav> + + <article> + <img src="_.png" class="art_img"> + <h2>about</h2> + <p>malloc?</p> + </article> + + <footer> + <p>(c) 2025 uint</p> + </footer> + +</body> +</html> diff --git a/contact.html b/contact.html index b82fd0f..f7e9be0 100644 --- a/contact.html +++ b/contact.html @@ -4,7 +4,7 @@ <meta charset="UTF-8"> <title>mallocd.com</title> - <link rel="stylesheet" href="style.css" type="text/css"> + <link rel="stylesheet" href="styles/def.css" type="text/css"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @@ -4,7 +4,7 @@ <meta charset="UTF-8"> <title>mallocd.com</title> - <link rel="stylesheet" href="style.css" type="text/css"> + <link rel="stylesheet" href="styles/def.css" type="text/css"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> diff --git a/style.css b/styles/def.css index d8e8451..46b8576 100644 --- a/style.css +++ b/styles/def.css @@ -91,6 +91,7 @@ article { image-rendering: crisp-edges; image-rendering: -moz-crisp-edges; max-width: 200px; + max-height: 190px; height: auto; } diff --git a/template.html b/template.html index 1b30e6c..b9412cb 100644 --- a/template.html +++ b/template.html @@ -4,7 +4,7 @@ <meta charset="UTF-8"> <title>mallocd.com</title> - <link rel="stylesheet" href="/style.css" type="text/css"> + <link rel="stylesheet" href="styles/def.css" type="text/css"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
