-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (32 loc) · 1.03 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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css.css" />
<script src="jquery.js"></script>
<script src="jquery-mobile.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Text Inputs</h1>
</div>
<div data-role="main" class="ui-content">
<form method="post" action="demoform.asp">
<div class="ui-field-contain">
<label for="fullname" >Full name:</label>
<input type="text" name="fullname" id="fullname" required>
<label for="bday">Date of Birth:</label>
<input type="date" name="bday" id="bday" required>
<label for="email">E-mail:</label>
<input type="email" name="email" id="email" placeholder="Your email.." required>
</div>
<input type="submit" data-inline="true" value="Submit">
</form>
</div>
<div data-role="footer">
<h1>Copy Right © 13-arid-1265</h1>
</div>
</div>
</body>
</html>