-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 1 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
<title>jQuery Mobile: Demos and Documentation</title>
<link rel="stylesheet" href="jquery.mobile-1.0a4.1.min.css" />
<script type="text/javascript" src="jquery-1.5.2.js"></script>
<script type="text/javascript" src="jquery.mobile-1.0a4.1.min.js"></script>
</head>
<body class="ui-mobile-viewport">
<div data-role="page">
<div data-role="content" class="ui-content">
<form action="form.php" method="post">
<div data-role="fieldcontain">
<textarea rows="8" name="textarea" id="textarea" style="width:90%;"></textarea>
</div>
<div data-theme="a" class="ui-btn ui-btn-corner-all ui-shadow ui-btn-hover-a ui-btn-down-a" aria-disabled="false">
<button type="submit" data-theme="a" name="submit" value="submit-value" class="ui-btn-hidden" aria-disabled="false" style="width:90%;">Submit</button>
</div>
</form>
</div>
</div>
</body>
</html>