У меня проблемы с проверкой моей страницы до строгого 1. Кто-нибудь может мне помочь? Он продолжает показывать:
Строка 48, столбец 4: тип документа не допускает использование элемента "h2
" здесь; при условии отсутствия начального тега "li
"
<h2>Current job vacancies</h2>
Строка 60, столбец 6: конечный тег для "li
" опущен, но указан OMITTAG NO
</div>
Возможно, вы пренебрегали закрытием элемента, или, возможно, вы хотели «самозакрыть» элемент, то есть заканчивая его «/>
» вместо «>
».
Строка 48, столбец 1: здесь был начальный тег
<h2>Current job vacancies</h2>
Строка 60, столбец 6: конечная метка для "ul
" опущена, но указан OMITTAG NO
</div>
Возможно, вы пренебрегали закрытием элемента, или, возможно, вы хотели «самозакрыть» элемент, то есть заканчивая его «/>
» вместо «>
».
Строка 45, столбец 37: здесь был начальный тег
<a href="#">Job Vacancies</a> <ul id="jobvacancies">
Вот моя страница:
1.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2.<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3.<head>
4.<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
5.<title>Royal Aura club and Restaurant</title>
6.<link rel="stylesheet" type="text/css" href="restyle.css" />
7.</head>
8.
9.<body>
10.
11.
12.<div id="main">
13.
14.
15.<div id="commonlinksbar">
16.|<a class="linker "href="#">about us</a>|
17.<a class="linker "href="#">contact us</a>|
18.<a class="linker "href="sitemap.html">site map</a>|
19.<a class="linker "href="#">copyright</a>|
20.
21.</div>
22.
23.
24.
25.
26.
27.<div id="header">
28.<img class="logo" src="relogo.jpg"alt="auramayfair logo" width="87" height="98" />
29.<h1> Royal Aura club and Restaurant</h1>
30.
31.<div id="nav">
32.<p><a href="index.html">HOME</a><a href="restaurant.html">RESTAURANT</a> <a href="#">GALLERY</a><a href="#">GUEST LIST</a><a href="jobvacancies.html">JOB VACANCIES</a></p>
33.</div>
34.
35.
36.
37.
38.
39.
40.<div id="content">
41.
42.<div id="breadcrumbs">
43.<a href="index.html">Home</a> >
44.
45.<a href="#">Job Vacancies</a> <ul id="jobvacancies">
46.
47.
48.<h2>Current job vacancies</h2>
49.<p>Royal aura club and restaurant are currently recruiting people to join our friendly atmosphere.</p>
50.
51.<p>Chef - Skilled Cook with experience in traditional Pan Asian cooking required. The successful candidate will be responsible for all domestic cooking; preparing and producing a range of appetizing meals. The successful candidate will have previous experience within a similar role and will possess natural enthusiasm and a strong passion for food.</p>
52.
53.<hr />
54.
55.<p>Bar staff- Experienced Bar Staff are needed for regular 5-8 hour shifts Fridays and Saturdays. We are looking for someone with previous bar experience, cash handling experience and excellent customer services skills are essential, as is a well-presented appearance and polite manner.</p>
56.
57.
58.<p>Applicants should send their CV with a covering letter to:<a href="mailto:royalaura@hotmail.com">jobs@royalaura.com</a></p>
59.
60.</div>
61.</div>
62.<div id="footer">
63.<p> Copy Right Royal Aura Club 2006</p>
64.</div>
65.
66.</div>
67.</div>
68.</body>
69.</html>
Вот новый код;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Royal Aura club and Restaurant</title>
<link rel="stylesheet" type="text/css" href="restyle.css" />
</head>
<body>
<div id="main">
<div id="commonlinksbar">
|<a class="linker "href="#">about us</a>|
<a class="linker "href="#">contact us</a>|
<a class="linker "href="sitemap.html">site map</a>|
<a class="linker "href="#">copyright</a>|
</div>
<div id="header">
<img class="logo" src="relogo.jpg"alt="auramayfair logo" width="87" height="98" />
<h1> Royal Aura club and Restaurant</h1>
<div id="nav">
<p><a href="index.html">HOME</a><a href="restaurant.html">RESTAURANT</a> <a href="#">GALLERY</a><a href="#">GUEST LIST</a><a href="jobvacancies.html">JOB VACANCIES</a></p>
</div>
<div id="content">
<div id="breadcrumbs">
<a href="index.html">Home</a> >
<a href="#">Job Vacancies</a> <div id="jobvacancies">
<div id="jobs">
<h2>Current job vacancies</h2>
<p>Royal aura club and restaurant are currently recruiting people to join our friendly atmosphere.</p>
<p>Chef - Skilled Cook with experience in traditional Pan Asian cooking required. The successful candidate will be responsible for all domestic cooking; preparing and producing a range of appetizing meals. The successful candidate will have previous experience within a similar role and will possess natural enthusiasm and a strong passion for food.</p>
<hr />
<p>Bar staff- Experienced Bar Staff are needed for regular 5-8 hour shifts Fridays and Saturdays. We are looking for someone with previous bar experience, cash handling experience and excellent customer services skills are essential, as is a well-presented appearance and polite manner.</p>
<p>Applicants should send their CV with a covering letter to:<a href="mailto:royalaura@hotmail.com">jobs@royalaura.com</a></p>
</div>
<div id="footer">
<p> Copy Right Royal Aura Club 2006</p>
</div>
</div>
</div>
</body>
</html>