-
Notifications
You must be signed in to change notification settings - Fork 0
/
Query.html
42 lines (42 loc) · 1.22 KB
/
Query.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
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
form{
padding: 20px;
width: 400px;
line-height: 40px;
border:2px solid black;
margin-left: 40%;
font-size: 20px;
}
label{
padding-right: 5px;
}
button{
padding: 10px;
}
</style>
</head>
<body>
<h2>Question 3</h2>
<h4>Write a HTML code to generate following output</h4>
<div class="enqure">
<form action="">
<label for="">Enter Name of your friend</label>
<Input type="text"></Input>
<label>Choose the file you want to past to your friend</label>
<Input type="file"></Input><br>
<label for="">What does the file contain?</label><br>
<Input type="checkbox">Image</Input>
<Input type="checkbox">Source Code</Input>
<Input type="checkbox">Binary code</Input><br>
<label for="">You have completed the Form.</label>
<button>Submit Query</button>
</form>
</div>
</body>
</html>