109 lines
2.4 KiB
HTML
109 lines
2.4 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;
|
|
border: 3px solid black;
|
|
padding: 12px;
|
|
margin: 12px 0;
|
|
}
|
|
|
|
.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: 10px dotted red;
|
|
border-radius: 50%;
|
|
padding: 10px;
|
|
}
|
|
</style>
|
|
</body>
|
|
|
|
</html> |