-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.html
More file actions
58 lines (54 loc) · 3.33 KB
/
Copy pathabout.html
File metadata and controls
58 lines (54 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang = "en">
<head>
<title>about this website | duck_master's personal website</title>
<meta charset="utf-8">
<meta name="description" content="all about me, duck_master! (duck_master's personal website)">
<link rel="stylesheet" href="main.css">
<!-- favicons -->
<link rel="icon" href="favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="favicons/apple-touch-icon.png">
<link rel="shortcut icon" href="favicons/favicon.ico">
</head>
<body>
<header>
<nav class = "navbar">
<a href = "index.html">Home</a>
<a href = "about-me.html">About me</a>
<a href = "about.html">About this website</a>
<a href = "legal-etc.html">Legal notes</a>
</nav>
<div class = "header-title">
<a href = "index.html"><h1>duck_master's personal website</h1></a>
<h2>miscellany since 2020</h2>
</div>
<div class = "header-img">
<img src = "avatar.png" alt = "">
</div>
</header>
<div class = "middler">
<div class = "content-box">
<h2>makingof</h2>
<p>I edit this website using <a href = "https://brackets.io/">Brackets</a>. I personally write all of the HTML and CSS code myself. The website is hosted by <a href = "https://pages.github.com/">GitHub Pages</a>.</p>
<p>My tech stack:</p>
<ul>
<li>Brackets v2.0.1</li>
<li>macOS* Ventura 13.3.1</li>
<li>Apple Safari** v15.1 + Firefox v95.0.2 + Google Chrome v97.0.4692.71</li>
</ul>
<p>*I may switch to (some distribution of) Linux in the future.</p>
<p>**I've tested this website in Safari and Chrome, but it should display correctly in all browsers. I may switch to Firefox in the future. </p>
</div>
<div class = "content-box">
<h2>copyright/licensing/etc.</h2>
<p>Like pretty much all other code I've ever written, this website is free and open source software, which I am releasing under the <a href = "https://github.com/duck-master/duck-master.github.io/blob/master/LICENSE">MIT license</a>. You can see its source code <a href = "https://github.com/duck-master/duck-master.github.io">here</a>. To the greatest extent permissible under law, I also release it under <a href = "https://creativecommons.org/licenses/by/4.0/">CC-BY 4.0 or later</a>.</p>
<p>Feel free to use the content on this website as you wish; I generally have a fairly <i>laissez-faire</i> attitude towards copyright, especially w.r.t. stuff I create. However, please give me credit.</p>
</div>
</div>
<footer>
<p> Questions, comments, or concerns? Send me email at <b>duckmaster0 at protonmail dot com</b></p>
<p> Last updated 2 January 2025 AD/CE</p>
<p>(c) 2020 - 2025 duck_master; <a href = "https://github.com/duck-master/duck-master.github.io">free and open source software</a> dual-licensed under<a href = "https://github.com/duck-master/duck-master.github.io/blob/master/LICENSE">MIT</a> and CC-BY 4.0</p>
</footer>
</body>
</html>