120 lines
3 KiB
HTML
120 lines
3 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>WELCOME TO MY PAGE</h1>
|
||
<p class="blink spaced">★ Under Construction ★</p>
|
||
</div>
|
||
|
||
<div class="center">
|
||
<div class="pre ascii">
|
||
/\_/\
|
||
( o.o )
|
||
> ^ <
|
||
|
||
</div>
|
||
</div>
|
||
|
||
<div class="box">
|
||
<h2>About me</h2>
|
||
|
||
<p>Hi, I’m <strong>CHANGE ME</strong>.</p>
|
||
|
||
<p>I’m into <strong>CHANGE ME</strong>.</p>
|
||
|
||
<p>Right now I’m thinking about: <strong>CHANGE ME</strong>.</p>
|
||
|
||
<p>
|
||
If you want to see something I like, click
|
||
<a href="https://example.com">CHANGE ME (your link)</a>.
|
||
</p>
|
||
</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: Arial, Helvetica, sans-serif;
|
||
color: black;
|
||
|
||
/* striped background */
|
||
background:
|
||
repeating-linear-gradient(45deg,
|
||
yellow 0px,
|
||
yellow 14px,
|
||
pink 14px,
|
||
pink 28px);
|
||
}
|
||
|
||
.wrap {
|
||
max-width: 760px;
|
||
margin: 0 auto;
|
||
padding: 16px;
|
||
}
|
||
|
||
.box {
|
||
background: white;
|
||
border: 3px solid black;
|
||
padding: 12px;
|
||
margin: 12px 0;
|
||
}
|
||
|
||
.highlight {
|
||
background: yellow;
|
||
font-family: fantasy;
|
||
}
|
||
|
||
.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> |