我的应用程序中有一个html页面我想将数据导出到pdf文件。我在这里发布我的html页面。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Homeland Security Opportunity</title>
<link href="css/login.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.8.3.min.js" ></script>
</head>
<body>
<div class="loginContainer">
<div class="block">
<h3 class="blockTitle">Login</h3>
<div class="blockContent">
<div class="formStyle">
<form action="welcome.html" method="post" name="quick_contact">
<label>Usename / Email-id:</label>
<input type="text" name="email" />
<small>(e.g. guest)</small>
<label>Password:</label>
<input type="password" name="password" />
<small>(e.g. guest123)</small>
<input type="submit" name="submit" value="Submit" />
</form>
</div>
</div>
</div>
</div>
</body>
</html>
这是我的html页面,任何人都可以帮助我???