From d27e6ec06ddc9686f4ac818390b3064d421cdd4d Mon Sep 17 00:00:00 2001 From: ravenci <7629374-ravenci@users.noreply.gitlab.com> Date: Sat, 14 Nov 2020 05:38:39 +0700 Subject: [PATCH] move old repo content to new repo preconfigured to work with gitlab pages --- public/index.html | 48 ++++++++++++++++++++++++++----------------- public/indexdark.html | 33 +++++++++++++++++++++++++++++ public/styles.css | 4 ++++ public/stylesdark.css | 7 +++++++ 4 files changed, 73 insertions(+), 19 deletions(-) create mode 100644 public/indexdark.html create mode 100644 public/styles.css create mode 100644 public/stylesdark.css diff --git a/public/index.html b/public/index.html index 6652c7d..e00d32d 100644 --- a/public/index.html +++ b/public/index.html @@ -1,23 +1,33 @@ <!DOCTYPE html> <html> - <head> - <meta charset="utf-8"> - <meta name="generator" content="GitLab Pages"> - <title>Plain HTML site using GitLab Pages</title> - <link rel="stylesheet" href="style.css"> - </head> - <body> - <div class="navbar"> - <a href="https://pages.gitlab.io/plain-html/">Plain HTML Example</a> - <a href="https://gitlab.com/pages/plain-html/">Repository</a> - <a href="https://gitlab.com/pages/">Other Examples</a> - </div> - - <h1>Hello World!</h1> - - <p> - This is a simple plain-HTML website on GitLab Pages, without any fancy static site generator. - </p> - </body> +<head> +<meta charset= "utf-8"> +<title>Learn Frontend WebDev</title> +<link rel='stylesheet' href='styles.css'/> +<h1>Welcome to my page!</h1> +<p><a href="indexdark.html">Toggle dark mode</a></p> +</head> +<body> +<h2>I made this page with the sole purpose to learn more about design with css, html, and javascript.</h2> +<p>I actually never use html both and css professionally. However i do have a bit of experience writing back when blogspot was still a thing, i was 13 arround that time. I stopped writing 1 or 2 months later because i'm bored. It's basically felt like doing a homework in ms office which is a weekly thing to do for 13yo me (Yes, our teacher taught us to do our homework on ms office). And i didn't even interested to learn more about css or html that time since all thing could be drag n dropped.</p> +<p>You might wonder "Well, why would't you told us why suddenly you had an idea that you would want to learn more about frontend webdev instead of telling an unrelated story" </p> +<p>Well that's a good question. I can't even think of any single logical reason besides "well learning new things is kinda fun" </p> +<h2>With all that out of the way. I would like to present you with my list of worthwhile link that consist of article, post or meme.</h2> +<ul> +<li><a href="https://cheatsheetseries.owasp.org">https://cheatsheetseries.owasp.org</a></li> +<li><a href="https://ctftime.org">ctftime.org</a></li> +<li><a href="https://alexcabal.com/creating-the-perfect-gpg-keypair">Creating the perfect GPG keys</a></li> +<li><a href="https://codeberg.org/crimeflare/cloudflare-tor">A detailed insight towards cloudflare centralized reverse-proxies</a></li> +<li><a href="https://w3.org">w3.org</a></li> +<h2>Feel free to gives me some frontend webdev related advice or say "Hi !" by either tagging me on mastodon or by commenting on my repo. You could find both of the link at the bottom of the page.</h2> +<h2> +</h2> +</body> +<footer> +<h6>https://gitlab.com/ravenci/learnwebdev +<a href="https://gitlab.com/ravenci/learnwebdev/"> or you could click here</a> +</h6> +<h6><a href="https://qoto.org/@ravenclaw"> or click here</a></h6> +</footer> </html> diff --git a/public/indexdark.html b/public/indexdark.html new file mode 100644 index 0000000..d7df1dc --- /dev/null +++ b/public/indexdark.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset= "utf-8"> +<title>Learn Frontend WebDev</title> +<link rel='stylesheet' href='styles.css'/> +<h1>Welcome to my page!</h1> +<p><a href="index.html">Toggle Light mode</a></p> +</head> +<body> +<h2>I made this page with the sole purpose to learn more about design with css, html, and javascript.</h2> +<p>I actually never use html both and css professionally. However i do have a bit of experience writing back when blogspot was still a thing, i was 13 arround that time. I stopped writing 1 or 2 months later because i'm bored. It's basically felt like doing a homework in ms office which is a weekly thing to do for 13yo me (Yes, our teacher taught us to do our homework on ms office). And i didn't even interested to learn more about css or html that time since all thing could be drag n dropped.</p> +<p>You might wonder "Well, why would't you told us why suddenly you had an idea that you would want to learn more about frontend webdev instead of telling an unrelated story" </p> +<p>Well that's a good question. I can't even think of any single logical reason besides "well learning new things is kinda fun" </p> +<h2>With all that out of the way. I would like to present you with my list of worthwhile link that consist of article, post or meme.</h2> +<ul> +<li><a href="https://cheatsheetseries.owasp.org">https://cheatsheetseries.owasp.org</a></li> +<li><a href="https://ctftime.org">ctftime.org</a></li> +<li><a href="https://alexcabal.com/creating-the-perfect-gpg-keypair"></a></li> +<li><a href="https://codeberg.org/crimeflare/cloudflare-tor"></a></li> +<li><a href="https://w3.org"></a></li> +<h2>Feel free to gives me some frontend webdev related advice or say "Hi !" by either tagging me on mastodon or by commenting on my repo. You could find both of the link at the bottom of the page.</h2> +<h2> +</h2> +</body> +<footer> +<h6>https://gitlab.com/ravenci/learnwebdev +<a href="https://gitlab.com/ravenci/learnwebdev/"> or you could click here</a> +</h6> +<h6><a href="https://qoto.org/@ravenclaw"> or click here</a></h6> +</footer> +</html> + diff --git a/public/styles.css b/public/styles.css new file mode 100644 index 0000000..167b421 --- /dev/null +++ b/public/styles.css @@ -0,0 +1,4 @@ +html { +background-color: white; +text-color: black; +} diff --git a/public/stylesdark.css b/public/stylesdark.css new file mode 100644 index 0000000..3593c8c --- /dev/null +++ b/public/stylesdark.css @@ -0,0 +1,7 @@ +html { +background-color: black; +color: white; +} +a { +color: #00ff00; +} -- GitLab