From accda27aeb1c66dc90b4ebd2175a871b5a8f6304 Mon Sep 17 00:00:00 2001 From: ravenci <134-ravenci@git.qoto.org> Date: Sat, 14 Nov 2020 15:20:28 +0700 Subject: [PATCH] add somekind of milestone --- public/index.html | 4 ++-- public/indexdark.html | 4 ++-- public/mls/milestone.html | 22 ++++++++++++++++++++++ public/mls/milestonedark.html | 22 ++++++++++++++++++++++ 4 files changed, 48 insertions(+), 4 deletions(-) create mode 100644 public/mls/milestone.html create mode 100644 public/mls/milestonedark.html diff --git a/public/index.html b/public/index.html index bb45ded..e08881a 100644 --- a/public/index.html +++ b/public/index.html @@ -24,7 +24,7 @@ </h2> </body> <footer> -<h6>https://git.qoto.org/ravenci/ravenci.qoto.io/<a href="https://git.qoto.org/ravenci/ravenci.qoto.io/"> or you could click here</a></h6> -<h6>https://qoto.org/@ravenclaw/<a href="https://qoto.org/@ravenclaw/"> or you could click here</a></h6> +<h6>https://git.qoto.org/ravenci/ravenci.qoto.io /<a href="https://git.qoto.org/ravenci/ravenci.qoto.io/">or you could click here</a></h6> +<h6>https://qoto.org/@ravenclaw/ <a href="https://qoto.org/@ravenclaw/">or you could click here</a></h6> </footer> </html> diff --git a/public/indexdark.html b/public/indexdark.html index 72b07c9..b474850 100644 --- a/public/indexdark.html +++ b/public/indexdark.html @@ -24,7 +24,7 @@ </h2> </body> <footer> -<h6>https://git.qoto.org/ravenci/ravenci.qoto.io/<a href="https://git.qoto.org/ravenci/ravenci.qoto.io/"> or you could click here</a></h6> -<h6><a href="https://qoto.org/@ravenclaw/"> or you could click here</a></h6> +<h6>https://git.qoto.org/ravenci/ravenci.qoto.io/<a href="https://git.qoto.org/ravenci/ravenci.qoto.io/">or you could click here</a></h6> +<h6>https://qoto.org/ <a href="https://qoto.org/@ravenclaw/">or you could click here</a></h6> </footer> </html> diff --git a/public/mls/milestone.html b/public/mls/milestone.html new file mode 100644 index 0000000..87f9a57 --- /dev/null +++ b/public/mls/milestone.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset= utf-8> +<link rel='stylesheet' href="../styles.css"/> +<title>Milestone</title> +<h6><a href="../index.html">back</a></h6> +<h1>List of what i've achieved and what should i learn next</h1> +</head> +<body> +<ol> +<li>Do a better job at writing only on html so people who look at my site without all the styling and flashy stuff enabled could still enjoy reading it.</li> +<li>Make a <em>modern-ish</em> look with only using CSS. (This probably will be the hardest challenge for me since i'm just starting learning html)</li> +<li>Make a better dark mode switcher (this could be achieved by providing a copy of every .css and .html file and modify it to show different look. or i could use javascript which is the last resort)</li> +<li>Make a dropdown menu for navigating purpose</li> +</ol> +<p>I'll add something new to achieve while i get ahold of the basic concepts</p> +</body> +<footer> +<a href="../index.html">back</a> +</footer> +</html> diff --git a/public/mls/milestonedark.html b/public/mls/milestonedark.html new file mode 100644 index 0000000..41f3b7b --- /dev/null +++ b/public/mls/milestonedark.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset= utf-8> +<title>Milestone</title> +<link rel='stylesheet' href="../stylesdark.css"/> +<h6><a href="../indexdark.html">back</a></h6> +<h1>List of what i've achieved and what should i learn next</h1> +</head> +<body> +<ol> +<li>Do a better job at writing only on html so people who look at my site without all the styling and flashy stuff enabled could still enjoy reading it.</li> +<li>Make a <em>modern-ish</em> look with only using CSS. (This probably will be the hardest challenge for me since i'm just starting learning html)</li> +<li>Make a better dark mode switcher (this could be achieved by providing a copy of every .css and .html file and modify it to show different look. or i could use javascript which is the last resort)</li> +<li>Make a dropdown menu for navigating purpose</li> +</ol> +<p>I'll add something new to achieve while i get ahold of the basic concepts</p> +</body> +<footer> +<a href="../indexdark.html">back</a> +</footer> +</html> -- GitLab