braids/index.html
2026-01-15 17:49:13 +01:00

110 lines
2.5 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Welcome!</title>
</head>
<body>
<div class="wrap">
<div class="box highlight center">
<h1>Just another webpage</h1>
<p class="blink spaced">★ Under Destruction ★</p>
</div>
<div class="center">
<div class="pre ascii">
-- -----
... ..!..
... ..!..
..........
.......!
... ..!
... ..!
</div>
</div>
<div class="box">
(too many content)
</div>
</div>
<style>
/*
Everything below this comment is CSS, this determines how the page looks.
Edit only if you want. Colors are easy to change, so you could just try it out.
Theres a list here: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Values/named-color
*/
body {
margin: 0;
font-family: Comic Sans, sans-serif;
color: blue;
/* striped background */
background-color:#0F0;
}
.wrap {
max-width: 760px;
margin: 0 auto;
padding: 16px;
}
.box {
background: white;
box-shadow: 0rem 0rem 10rem 1rem rgba(255,0,255,1);
padding:0.25rem;
border-radius: 2.5rem;
margin: 1rem;
}
.highlight {
background: yellow;
}
.footer {
background: skyblue;
}
.center {
text-align: center;
}
/* .spaced { margin: 8px 0; } */
.blink {
animation: blink 1s steps(2, start) infinite;
font-weight: bold;
}
@keyframes blink {
to {
visibility: hidden;
}
}
.ascii {
font-family: "Courier New", Courier, monospace;
}
.pre {
line-height: 1.2;
margin: 10px 0 0;
white-space: pre;
display: inline-block;
background: white;
border: 5px dotted blue;
border-radius: 50%;
padding: 10px;
}
</style>
</body>
</html>