08-06-2011, 02:42 AM
(This post was last modified: 08-06-2011, 03:25 AM by AceInfinity.)
(08-06-2011, 12:15 AM)williamjacks123 Wrote: Your site is not working...
it's up now, it could have been your internet connection timing out
Why do you have a font tag around an image? And the font tag around your links won't do anything, you have to change the link css. Also bold, and strong tags around the same text is unnecessary. You also don't need <h1> tags around your image either.
Try something like this.
Your index.html:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="keywords" content="Random, keywords, go, here" />
<meta name="description" content="Site description goes here" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The Unknown Network</title>
<link rel="shortcut icon" href="favicon.ico">
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="header">
<div id="logo">
<img src="http://i.imgur.com/SB1xs.png" />
</div>
</div>
<div id="links">
<h1>Below Is A List Of My Files</h1>
<a href="http://www.scanner.theunknownnetwork.com">URL Scanner</a>
<br />
<a href="http://www.youtube.theunknownnetwork.com">Youtube To MP3 Convertor</a>
<br />
<a href="http://www.proxy.theunknownnetwork.com">Proxy Project</a>
<br />
</div>
<br />
<br />
<div id="page_content">
<strong><u>More will be added soon!</u></strong>
</div>
<div id="footer">
<p>
Created by <a href="http://www.supportforums.net/member.php?action=profile&uid=4546">Ace</a> - 2011
</p>
</div>
</body>
</html>
Your style.css page:
Code:
a:link {
color:#FFFFFF;
text-decoration:none;
}
a:visited {
color:#FFFFFF;
text-decoration:none;
}
a:hover {
color:#00CCFF;
text-decoration:underline;
}
a:active {
color:#FFFFFF;
}
body {
margin-top: 0px; /*set all the way to top*/
background: #000; /*define the background*/
text-align: center; /*IE centering*/
min-width: 500px; /*minimum width allowed*/
width: auto; /*auto center*/
}
h1 {
color: #FFFFFF;
}
div#header {
height: 125px; /*Set the height of the header area*/
width: 1100px; /*Width*/
margin-top: 10px;
margin-left: auto; /*------ centering --------*/
margin-right: auto; /*------ centering --------*/
}
/* You can change margin-left and right to make it left justified in case you want a menu */
div#logo {
position: relative;
margin-left: auto;
margin-right: auto;
width: inherit;
}
div#page_content {
width: auto;
color: #00CCFF;
background: #000000;
font-family: "Times New Roman", Times, serif;
font-size: 14px;
padding-left: 75px;
padding-right: 75px;
}
div#footer {
color: #CCCCCC;
text-align: center;
font-size:11px;
}
div#footer a { color:#CCCCCC }
div#footer a:hover { color:#eeeeee; }