Files
Simple-Valentine/index.html
2025-03-08 10:46:47 +03:00

95 lines
2.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Handjet:wght@100..900&family=Kosugi+Maru&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Handjet&family=Kosugi+Maru&family=Noto+Sans+Khojki&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Delius&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Valentine</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #1f1f1f; /* Dark background color */
color: #ffffff; /* Text color */
}
.parent {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
overflow: auto;
}
.block {
width: 250px;
height: 500px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
}
H1 {
text-align: center
}
H2 {
text-align: center
}
H3 {
text-align: center
}
.block img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
border: none;
}
.handjet-light {
font-family: "Handjet", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
font-variation-settings: "ELGR" 1, "ELSH" 2;
}
.delius-regular {
font-family: "Delius", "serif";
font-optical-sizing: auto;
font-weight: 200;
font-style: normal;
}
</style>
</head>
<body>
<div class="parent">
<div class="block">
<div class="container center">
<img src='furinaheart.png'>
<h1 class="handjet-light"><i>С днём Святого Валентина, няя ^^</i></h1>
</div>
</div>
</div>
</body>
</html>