1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
<!DOCTYPE html>
<html id="web-developer-validate-html" lang="en">
<head>
<meta charset="utf-8">
<title>Web Developer</title>
<link href="validation.css" rel="stylesheet">
<link href="images/favicon.ico" rel="shortcut icon">
</head>
<body>
<div id="content" class="container-fluid">
<div class="active progress progress-info progress-striped">
<div class="bar"></div>
</div>
</div>
<form id="form" action="http://validator.w3.org/check" enctype="multipart/form-data" method="post" class="hidden">
<input id="file" type="file" name="uploaded_file">
<input type="hidden" name="ss" value="1">
<input type="hidden" name="verbose" value="1">
</form>
</body>
</html>
|