Code backup
This commit is contained in:
2026-05-10 16:59:01 +02:00
commit 368d6fafea
796 changed files with 315310 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Page Title</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<script src='main.js'></script>
</head>
<body>
<div id="container">
<p class="title">Hello World!</p>
<p class="corpe">Powered by Html & CSS</p>
</div>
</body>
</html>
+33
View File
@@ -0,0 +1,33 @@
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
background: linear-gradient(315deg, #d12b2b, #5684b4);
background-attachment: fixed;
font-family: "Poppins", sans-serif;
height: 100%;
display: grid;
padding: 25px;
}
div#container {
margin: auto;
}
.title {
color: #fff;
font-size: 56px;
text-align: center;
}
.corpe {
color: #fff;
font-size: 12px;
text-align: center;
}