mirror of
https://github.com/SrIzan10/mainwebsite.git
synced 2026-06-06 00:56:58 +00:00
Add blog and a file with no code in it
This commit is contained in:
@@ -7,5 +7,6 @@ Down here I'll put all the changelogs starting from [here](https://github.com/Sr
|
||||
|
||||
# Changelog
|
||||
---
|
||||
Add a [Blog](https://srizan.ml/blog) and a [file with no code in it](https://srizan.ml/whitefile)
|
||||
Add a Go to home (in spanish) in the [Bask](https://srizan.ml/bask) guide
|
||||
Obviously, Add README.md. (1/3/21)
|
||||
51
blog/index.html
Normal file
51
blog/index.html
Normal file
@@ -0,0 +1,51 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<link rel="icon" type="image/png" href="../favicon.jpg"/>
|
||||
<link href="../css/addaptphone.css" rel="stylesheet" type="text/css">
|
||||
<!--If it's a phone, addapt it (and maked some code in css/addaptphone.css to be future-proof)-->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<title>Bask Bot | Sr Izan's Website</title>
|
||||
<!--Scripts and styles-->
|
||||
<script>
|
||||
</script>
|
||||
<style>
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Days until the blog is done:</h1>
|
||||
<p id="demo"></p>
|
||||
|
||||
<script>
|
||||
// Set the date we're counting down to
|
||||
var countDownDate = new Date("Mar 7, 2021 17:00:00").getTime();
|
||||
|
||||
// Update the count down every 1 second
|
||||
var x = setInterval(function() {
|
||||
|
||||
// Get today's date and time
|
||||
var now = new Date().getTime();
|
||||
|
||||
// Find the distance between now and the count down date
|
||||
var distance = countDownDate - now;
|
||||
|
||||
// Time calculations for days, hours, minutes and seconds
|
||||
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
|
||||
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
|
||||
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
|
||||
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
|
||||
|
||||
// Display the result in the element with id="demo"
|
||||
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
|
||||
+ minutes + "m " + seconds + "s ";
|
||||
|
||||
// If the count down is finished, write some text
|
||||
if (distance < 0) {
|
||||
clearInterval(x);
|
||||
document.getElementById("demo").innerHTML = "DONE! (Now wait till Sr Izan unlocks the page);
|
||||
}
|
||||
}, 1000);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
18
whitefile.html
Normal file
18
whitefile.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<link rel="icon" type="image/png" href="../favicon.jpg"/>
|
||||
<link href="../css/addaptphone.css" rel="stylesheet" type="text/css">
|
||||
<!--If it's a phone, addapt it (and maked some code in css/addaptphone.css to be future-proof)-->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<title>Bask Bot | Sr Izan's Website</title>
|
||||
<!--Scripts and styles-->
|
||||
<script>
|
||||
</script>
|
||||
<style>
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user