60 lines
No EOL
1.2 KiB
HTML
60 lines
No EOL
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<style>
|
|
|
|
body {
|
|
text-align: center;
|
|
color: white;
|
|
background: #090524;
|
|
}
|
|
|
|
ul {
|
|
border: 1px solid lightgray;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
width: 400px;
|
|
margin: auto;
|
|
list-style-type: none;
|
|
}
|
|
|
|
/* unvisited link */
|
|
a:link {
|
|
color: red;
|
|
}
|
|
|
|
/* visited link */
|
|
a:visited {
|
|
color: green;
|
|
}
|
|
|
|
/* mouse over link */
|
|
a:hover {
|
|
color: hotpink;
|
|
}
|
|
|
|
/* selected link */
|
|
a:active {
|
|
color: blue;
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<h1>awesome.colean.cc</h1>
|
|
|
|
<img src="res/awdog.png" width="160"><br>
|
|
awdog, the mascot of awesome
|
|
|
|
<br><br>
|
|
|
|
<ul>
|
|
<li><a href="https://git.colean.cc/awesomeuser/awesome.git">@gitrepo</a></li>
|
|
<li><a href="proj/wolfystein.html">@Wolfystein3D</a></li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html> |