diff options
| -rw-r--r-- | contact.html | 51 | ||||
| -rw-r--r-- | index.html | 12 | ||||
| -rw-r--r-- | ring.png | bin | 0 -> 11743 bytes | |||
| -rw-r--r-- | style.css | 2 | ||||
| -rw-r--r-- | template.html | 52 |
5 files changed, 110 insertions, 7 deletions
diff --git a/contact.html b/contact.html index e69de29..b82fd0f 100644 --- a/contact.html +++ b/contact.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <title>mallocd.com</title> + + <link rel="stylesheet" href="style.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="ring.png" class="art_img"> + <h2>contact</h2> + <p>you can contact me from my <a href="mailto:abhinav.prsai@gmail.com">email</a> or from my <a href="https://github.com/uint23">github</a></p> + </article> + + <footer> + <p>(c) 2025 uint</p> + </footer> + +</body> +</html> @@ -29,20 +29,20 @@ <p class="side-title">projects:</p> <ul> - <li><a href="/projects/asimotive3d/">> asimotive3d/</a></li> - <li><a href="/projects/sxwm/">> sxwm/</a></li> - <li><a href="/projects/sxbar/">> sxbar/</a></li> - <li><a href="/projects/xpet/">> xpet/</a></li> + <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="9birb.png" class="birb9"> + <img src="9birb.png" class="art_img"> <p> - Hi, I'm <a>uint</a> and I build many things in C. This website documents my projects, and other stuff + im <a>uint</a> and i build many things in c. this website documents my projects and other stuff </p> <h3>featured:</h3> diff --git a/ring.png b/ring.png Binary files differnew file mode 100644 index 0000000..99970b4 --- /dev/null +++ b/ring.png @@ -86,7 +86,7 @@ article { max-width: 800px; } -.birb9 { +.art_img { image-rendering: pixelated; image-rendering: crisp-edges; image-rendering: -moz-crisp-edges; diff --git a/template.html b/template.html new file mode 100644 index 0000000..1b30e6c --- /dev/null +++ b/template.html @@ -0,0 +1,52 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <title>mallocd.com</title> + + <link rel="stylesheet" href="/style.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> + <!-- PAGE CONTENT STARTS HERE --> + <h2>title</h2> + <p>template</p> + <!-- PAGE CONTENT ENDS HERE --> + </article> + + <footer> + <p>(c) 2025 uint</p> + </footer> + +</body> +</html> |
