
This page has no privacy policy. If your web server logs visits, then every page reachable by a search engine should have a privacy policy explaining what is logged and how the logs are used.
Line 1 EU Privacy Regulations


A well-written description tag attracts more clicks in search results than
an irrelevant or missing description.

Provide a search option on each page of content-rich web sites.
Line 1 Usability.gov 17:4

A search option should be provided on all pages where it may be useful - users should not have to return to the homepage to conduct a search. Search engines can be helpful on content-rich web sites, but do not add value on other types of sites.
<!DOCTYPE html>
<html
>

Use the LANG attribute to identify the language of the page.
Line 2 WCAG2 A 3.1.1

In HTML add a LANG attribute to the HTML tag, and in PDF set the language using Document Properties in Acrobat. This allows screen readers to pronounce words correctly.
>
<head>
<title>ParkingEye Car Park Management - About Us</title>
<link href="/Content/reset.css" rel="stylesheet" type="text/css" />
<link href="/Content/site.css?v=20130604" rel="stylesheet" type="text/css" />
<script src="/Scripts/jquery-1.9.1.min.js" type="text/javascript"></script>
</head>
<body>
<div class="wrapper">
<div class="header">
<div class="links">Pay Your Parking Charge, <a href="https://payments.parkingeye.co.uk/"
>click here</a> | <a href="http://customer.parkingeye.co.uk/">Customer Login »</a> </div>

Don't use generic text like "Click Here" or "Read More" in link text, because it says nothing about the link target when read out by a screen reader. Link text:
"click here"
Line 14 WCAG2 AAA F84

Either change the link text, or add a TITLE attribute to the link with a fuller description of the link destination.

Users should be able to quickly look at each link and tell where it goes. Link text:
"click here"
Line 14 Usability.gov 10:1

Don't use generic link labels like "click here" or "read more" because they're hard to tell apart when users scan a page.
>click here</a> | <a href="http://customer.parkingeye.co.uk/">Customer Login »</a> </div>
<div class="logo"><a href="/"><img src="/Content/Images/pe_logo.gif" width="168" height="46" border="0" alt="ParkingEye Car Park Management"/
></a></div>

The 'border' attribute on the 'img' element is obsolete.
Consider specifying 'img { border: 0; }' in CSS instead.
Line 15 HTML5
></a></div>
</div>
<div class="body">
<div class="left">
<ul class="menu">
<li><a href="/">Home</a></li>
<li><a href="/AboutUs">About Us</a></li>
<li><a href="/Products">Products</a></li>
<li><a href="/KeyBenefits">Key Benefits</a></li>
<li><a href="/Testimonials">Testimonials</a></li>
<li><a href="https://payments.parkingeye.co.uk/">Pay Your Parking Charge</a></li>
<li><a href="/ParkingChargeFAQ">Parking Charge FAQ</a></li>
<li><a href="/News">News</a></li>
<li><a href="/Contact">Contact</a></li>
</ul>
<ul class="accreditations">
<li class="bpaaos"><a href="http://www.britishparking.co.uk/" title="BPA Approved Operator Scheme">BPA Approved Operator Scheme</a></li>
<li class="hpc"><a href="http://www.britishparking.co.uk/" title="BPA Hospital Parking Charter">BPA Hospital Parking Charter</a></li>
<li class="contractorplus"><a href="http://www.sm-ms.co.uk/" title="Contractor Plus">Contractor Plus</a></li>
<li class="safecontractor"><a href="http://www.safecontractor.com/" title="Safe Contractor Approved">Safe Contractor Approved</a></li>
<li class="dmuk"><a href="http://www.disabledmotoring.org/" title="Disabled Motoring UK">Disabled Motoring UK</a></li>
<li class="apprenticeships"><a href="http://www.apprenticeships.org.uk/">Apprenticeships</a></li>
</ul>
</div>
<div class="right">
<div class="content">
<h1>About ParkingEye</h1>
<p>ParkingEye was established in 2002, bringing technology-centred car park management solutions to an antiquated industry. ParkingEye has rapidly become the number one technical solutions parking operator in the industry, through the quality of its product, service delivery and system integrity.</p>
</div>
<div class="content-wells">
<div class="well1">
<h2>Benefits of the ParkingEye system</h2>
<p>ParkingEye’s portfolio of products provides enforcement solutions, management services and alerting systems for free, limited time and paid parking environments.</p>
</div>
<div class="well2">
<h2>How The System Works</h2>
<p>ParkingEye’s ANPR System feeds to secure live client web pages, where live statistical data is accessible 24/7. </p>
</div>
</div>
</div>
<div class="chevron"></div>
</div>
<div class="footer">
<div class="links">
<a href="/">Home</a> |
<a href="/AboutUs"
>About Us</a> |

Provide a way to skip repetitive navigation links.
Line 71 Section 508 1194.22 (o)

Without a skip link, screen readers read out the navigation links on every page before reading the page content.
Headings can be a substitute in limited circumstances, but they're not used by all screen reader users,
and many other assistive technology users have no way to navigate via headings.
Add a "Skip to Content" link at the start of the document hidden offscreen by CSS, and made visible on focus, so it's available to keyboard and screen reader users:
<a class="accessible" href="#main">[Skip to Content]</a>
>About Us</a> |
<a href="/Products">Products</a> |
<a href="/KeyBenefits">Key Benefits</a> |
<a href="/Testimonials">Testimonials</a> |
<a href="/Contact">Contact</a> |
<a href="/Home/TermsAndConditions">Terms & Conditions</a> |
<a href="http://www.parkingeyejobs.co.uk/">Jobs / Careers</a>
</div>
</div>
</div>
</body>
</html>