mirror of
https://github.com/SrIzan10/mainwebsite.git
synced 2026-06-26 02:12:26 +00:00
39 lines
1.0 KiB
HTML
Executable File
39 lines
1.0 KiB
HTML
Executable File
<html>
|
|
<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"/>
|
|
<body>
|
|
<title>Sr Izan's website.</title>
|
|
|
|
<marquee behavior="alternate" direction="right">
|
|
<h1>Sr Izan's Website.</h1>
|
|
</marquee>
|
|
|
|
<div class="corner"><button onclick="myFunction()">Cambiar a modo oscuro</button></div>
|
|
<!--Scripts and styles-->
|
|
<script>
|
|
function myFunction() {
|
|
var element = document.body;
|
|
element.classList.toggle("dark-mode");
|
|
}
|
|
</script>
|
|
<style>
|
|
body {
|
|
background-color: white;
|
|
color: black;
|
|
font-size: 25px;
|
|
}
|
|
.corner{
|
|
position: absolute;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
}
|
|
|
|
.dark-mode {
|
|
background-color: #23272A;
|
|
color: white;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html> |