forked from yogeshswdev/html5_CSS_JavaScript_JQuery_start
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
47 lines (38 loc) · 1.57 KB
/
Copy pathjoin.html
File metadata and controls
47 lines (38 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Join Us</title>
<link rel="stylesheet" href="join.css">
</head>
<body>
<nav>
<label class="logo">JOIN US</label>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact1.html">Contact</a></li>
<li><a href="https://forms.gle/vJGSHEzD4Prx2uEM9">Feedback</a></li>
</ul>
</nav>
<div class="container">
<form onsubmit = "event.preventDefault();">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" placeholder="Your name..">
<label for="usn">USN</label>
<input type="text" id="usn-el" name="usn" placeholder="Your USN..">
<label for="email">Email Id</label>
<input type="email" id="email-el" name="email" placeholder="Your email..">
<label for="name">Password</label>
<input type="password" id="pass-el" name="password" placeholder="Your Password..">
<label for="phone">Phone</label>
<input type="text" id="phone-el" name="subject" placeholder="Your phoneNumber.." >
<input type="submit" value="Submit" id = "subbtn" onclick ="myfun();">
</form>
</div>
<script src = "join.js">
</script>
</body>
</html>