-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA2(Form, Assignment 2).html
More file actions
51 lines (51 loc) · 2.16 KB
/
Copy pathA2(Form, Assignment 2).html
File metadata and controls
51 lines (51 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script type="text/javascript" src="https://gc.kis.v2.scr.kaspersky-labs.com/FD126C42-EBFA-4E12-B309-BB3FDD723AC1/main.js?attr=TOQS6zvNW_rwgFJzyJ09c9nb5Iwc7xeR0G-xTl1FIZWUrcdyWTEB5BbZ6C-fdgtnUUSf5k8TVwHLq46LMUEiCpMXGcblgTkWnAfjjRqoq7w" charset="UTF-8"></script><link rel="stylesheet" crossorigin="anonymous" href="https://gc.kis.v2.scr.kaspersky-labs.com/E3E8934C-235A-4B0E-825A-35A08381A191/abn/main.css?attr=aHR0cHM6Ly9yYXcuZ2l0aGFjay5jb20vQVQzMDAzNS9Bc3MyL21haW4vaW5kZXguaHRtbA"/>
</head>
<body>
<h1>Forms</h1>
<label for="">Name</label>
<input type="text" name="name" placeholder="Name" id="">
<br><br>
<label for="">Email-id</label>
<input type="text" name="Email-id" placeholder="Email-id" id="">
<br><br>
<label for="Password">Password</label>
<input type="text" placeholder="Password">
<br><br><br><br>
<label for="">Language</label><br><br>
<input type="radio" name="skills" id="">HTML<br>
<input type="radio" name="skills" id="">CSS<br>
<input type="radio" name="skills" id="">JS
<br><br>
<label for="">Course</label>
<br><br>
<input type="checkbox" name="" id="">Java Stack <br>
<input type="checkbox" name="" id="">Data science <br>
<input type="checkbox" name="" id="">Mern stack
<br><br><br>
<label for="">Field:</label>
<br><br>
<select name="dropdown" id="">
<option value="select">Select</option>
<option value="CSS">CSS</option>
<option value="HTML">HTML</option>
<option value="JS">JS</option>
</select>
<br><br>
<textarea spellcheck="true" name="" placeholder="Describe Yourself" id=""></textarea>
<br><br>
<input type="date" name="" id="">
<br><br>
<label for="">Phone No.</label>
<input type="number" name="Phone No." placeholder="Phone No." id="">
<br><br>
<input type="submit" value="Submit" >
<br><br>
<a href="A2(Table, Assignment 2).html">Click here for Table File</a>
</body>
</html>