仍在尝试掌握这里的问题格式...
我正在尝试为我的网页设计课程验证我的 HTML ......并且为了获得完整的信用,我需要没有错误。
我已经检查了一百万次,我的验证者发誓我<head> </head>
的仍然是开放的,我没有声明 DOCTYPE。我是新手,所以请随时称我为菜鸟。
这是我正在使用的验证器:http: //validator.w3.org/
<html>
<!DOCTYPE html>
<head>
<title> Wonder Penguin! </title>
<link rel="shortcut icon" href="penguinicon.png">
<link rel="stylesheet" href="solo.css"/>
</head>
<img src= banner.jpg alt="Penguin!" />
<div id="content">
<div id="main" class="section">
<form action="solo.php" method="POST">
<h1> Personal Information </h1>
<label for="first_name">First Name:</label> <input type="text" name="first_name" size="20" />
<br>
<label for="last_name"> Last Name:</label> <input type="text" name="last_name" size="20" />
<br>
<label for="twitter">Twitter:</label><input type="text" name="twitter" size="20" />
<br>
<label for="website">Personal Website:</label><input type="text" name="website" size="20" />
<h1> Location </h1>
State:<input type="Text" name="state" size="10" />
<br>
City: <input type="text" name="city" size="10" />
<br>
<input type="submit" value="Let's go!" size="80" />
<input type="reset" value="Start over?" size="80" />
</form>
</div>
<div id="column" class="section">
</div>
<div id="updates" class="section">
<h1> Updates </h1>
<p>
Hello!
</p>
</div>
<div id="aboutyou" class="section">
</div>
<div id="footer" class="section">
Footer is here!
<br>
<script type="text/javascript">
printToday();
</script>
</div>
</div>
</html>