-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq2.html
More file actions
60 lines (56 loc) · 1.4 KB
/
q2.html
File metadata and controls
60 lines (56 loc) · 1.4 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE HTML>
<html lang = "en">
<head>
<title>XenaEvents</title>
<meta charset = "UTF-8" />
<style type = "text/css">
.logo
{margin:0 auto;
clear:both;
}
.logo img{
float:left;
margin-left : 400px;
width:40px;
height:40px;
}
.logo h1
{
position : relative;
left: 10px;
color : red;
}
.form input{width : 200px;}
</style>
</head>
<body>
<div class="logo">
<img src="logo.png" alt="logo" />
<h1>Xena<span style="color:blue";> Events</span></h1>
</div>
<h2 style="color: orange;">Hot <span style="color:black";>Balloon Riding <span style="font-size:16px; font-weight:normal">[Feb 28th 2017- Mar 4th 2017]</span></h2>
<div class="form">
<form action="xena.php">
</br>
<label>Name: </label></br>
<input type="text" name="Name" pattern="[a-zA-Z\s]+" required/>
</br></br>
<label>Age: </label></br>
<input type="number" name="Age" required min="18" />
</br></br>
<label>Email Id: </label></br>
<input type="email" name="Email" required pattern="[a-zA-Z0-9\.\-_]+@[a-zA-Z]+\.[a-zA-Z]+$" /></br>
</br>
<label>City: </label></br>
<input type="text" list="city" required/>
<datalist id="city">
<option>Rajkot</option>
<option>Vizag</option>
<option>Bangalore</option>
</datalist>
</br></br>
<input type="submit" value="SUBMIT" style="width:70px;">
</form>
</div>
</body>
<html>