35 lines
880 B
HTML
35 lines
880 B
HTML
<!DOCTYPE html>
|
||
|
||
<html>
|
||
<head>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||
<title>my-first-website</title>
|
||
<LINK href="styles.css" rel="stylesheet" type="text/css">
|
||
<style type="text/css">
|
||
a {
|
||
color: #993399;
|
||
}
|
||
a:visited {
|
||
color: #993399;
|
||
}
|
||
a:hover {
|
||
color: #FFFF00;
|
||
}
|
||
.auto-style1 {
|
||
text-align: center;
|
||
}
|
||
</style>
|
||
</head>
|
||
|
||
<body style="color: #FF9933; background-color: #000000">
|
||
|
||
<img src="/images/mfm_steamed_punk_01.png" id="intro" alt="mfm-png"/>
|
||
|
||
<!-- Change this code here by copy and pasting your template on line 15 -->
|
||
<p class="auto-style1">Hey everyone! I’m Steamed_Punk.</p>
|
||
<p class="auto-style1">You can grab my Minetest <a href="mods.html">Mods</a>,
|
||
<a href="mobs.html">Mobs</a> and <a href="texture-packs.html">Texture-Packs</a> here, enjoy!</p>
|
||
|
||
</body>
|
||
</html>
|