mirror of
https://github.com/SrIzan10/mainwebsite.git
synced 2026-06-06 00:56:58 +00:00
Yay, commit!
This commit is contained in:
@@ -7,7 +7,6 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta name="Home - Sr Izan's Website." content="Main page for Sr Izan website" />
|
||||
<meta desctiption
|
||||
<link rel="canonical" href="https://srizan.ml/index.html" />
|
||||
<title>Sr Izan's website.</title>
|
||||
<!--Scripts and styles-->
|
||||
|
||||
23
projects/discord.html
Normal file
23
projects/discord.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<!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"/>
|
||||
<meta name="DiscordJS" content="DiscordJS projects" />
|
||||
<link rel="canonical" href="https://srizan.ml/projects/discordjs.html" />
|
||||
<title>DiscordJS</title>
|
||||
<!--Scripts and styles-->
|
||||
<script>
|
||||
</script>
|
||||
<style>
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<a href="bask">Bask (spanish bot)</a>
|
||||
<a href="#">Bask Radio</a>
|
||||
<a href="#">HammerBot</a>
|
||||
</body>
|
||||
</html>
|
||||
@@ -17,9 +17,21 @@
|
||||
text-align: center;
|
||||
font-size: 42px;
|
||||
}
|
||||
.discord{
|
||||
text-align: center;
|
||||
font-size: 30px;
|
||||
}
|
||||
.norton{
|
||||
color: black;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="projectscap">Projects</h1>
|
||||
<h1 class="projectscap">Projects</h1><br>
|
||||
<a href="discord" class="discord">Discord Bots</a><br>
|
||||
<a href="https://nortonsrizan.ml">Norton Scam templates (not mine, just a fork)</a><br>
|
||||
<a href="https://www.youtube.com/playlist?list=PLUGuW-_Z2a7vq04EMjjRWAjqk2gajE2pk">Sr Izan's Good Stuff Playlist. (adding new music every week!)</a><br>
|
||||
<a href="memegenerator">Make memes by a photo (Codepen project)</a><br>
|
||||
<p>If I renember more, I'll add it!</p>
|
||||
</body>
|
||||
</html>
|
||||
55
projects/memegenerator.html
Normal file
55
projects/memegenerator.html
Normal file
@@ -0,0 +1,55 @@
|
||||
<!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"/>
|
||||
<meta name="Meme Generator" content="Meme Generator by Sr Izan (Codepen dump)" />
|
||||
<link rel="canonical" href="https://srizan.ml/projects/memegenerator.html" />
|
||||
<title>Sr Izan's Website</title>
|
||||
<!--Scripts and styles-->
|
||||
<script>
|
||||
function update_text(){
|
||||
var user_text = document.getElementById("user_text");
|
||||
var meme_text = document.getElementById("meme_text");
|
||||
meme_text.innerHTML = user_text.value;
|
||||
var img = document.querySelector('img');
|
||||
var file = document.querySelector('input[type=file]').files[0];
|
||||
img.src = window.URL.createObjectURL(file);
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
#meme_text {
|
||||
background-color: transparent;
|
||||
font-size: 40px;
|
||||
font-family: "Impact";
|
||||
color: white;
|
||||
text-shadow: black 0px 0px 10px;
|
||||
width: 600px;
|
||||
position: absolute;
|
||||
left: 15px;
|
||||
top: 400px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<html>
|
||||
<head>
|
||||
<title>Generador de memes (Alpha 1)</title>
|
||||
</head>
|
||||
<body>
|
||||
Este generador (en fase alpha) te va a generar memes.
|
||||
<strong>Disclaimer: Esto no es un proyecto original. Es de Raspberry Pi Projects</strong>: <a href="https://bit.ly/35ECKPy">Página del proyecto (Raspberry Pi Projects) </a>Ah! también. <strong>Nota: todas las imágenes se guardan en tu ordenador; este programa no sube nada a Internet. (alias Client Side Tool)</strong>
|
||||
<form>
|
||||
Texto del meme: <input type="text" id="user_text" maxlength="70" oninput="update_text()"><p>
|
||||
Selecciona una imagen: <input type="file" id="user_picture" onchange="update_image()">
|
||||
</form>
|
||||
<div id="meme_text">Texto de ejemplo aquí</div>
|
||||
<div id="meme_picture"><img src="" height="500" width="600"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1 @@
|
||||
Sitemap: https://srizan.ml/sitemap.xml
|
||||
Reference in New Issue
Block a user