I don't see why this is incomplete?
3 posts Page 1 of 1
I don't see why this is incomplete?
Hey,I have been working on my web designing skills for 2 days now. And I currently have a small issue with my website.

please help me (If you can please try and not use extensive vocabulary-I'v just seen it a lot over the forums- i'm still in my early teens.)
If it helps:
- Code: Select all
<html>
<head>
<title>ZeniF</title>
<link rel="stylesheet" type="text/css" href="style/Style.css" />
</head>
<body>
<div id="toptitle">ZeniF's Web</div>
<div id="homelink"><a class="home" href="">Home</a></div>
<div id="aboutme"><a class="about" href="">About Me</a></div>
</body>
</html>
and the css file:
- Code: Select all
#toptitle {
color:red;
text-decoration:none;
font-style:impact;
font-weight:bold;
font-size:17px;
float:left;
margin-right:12px;
}
#homelink {
font-size:13px;
padding-top:3px;
margin-right:5px;
float:left;
}
a.home {
color:black;
text-decoration:none;
}
a.home:hover {
color:#848484;
}
a.home:visited {
color:black;
}
#aboutme {
padding-top:3px;
font-size:13px;
float:left;
)
a.about {
color:black;
text-decoration:none;
}
Re: I don't see why this is incomplete?
ah thanks :)Re: I don't see why this is incomplete?
Hi,I think you have need to correct this ')' to replace by '}',
- Code: Select all
#aboutme {
padding-top:3px;
font-size:13px;
float:left;
}
Thanks.
--
Farhin Qureshi
.NET Developer
http://www.ifourtechnolab.com
Farhin Qureshi
.NET Developer
http://www.ifourtechnolab.com
Page 1 of 1