forked from Veer0x1/techTeamExpansion23
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (65 loc) · 2.6 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Expansion Form</title>
</head>
<body>
<header>
<h1>We Are Expanding!!</h1>
<h4 style="color:rgb(255, 204, 0)" >Give your details, so that we reach out to you!</style></h4>
</header>
<section>
<nav>
<ul>
<li><img src="image1.png" width="80%" height="30%"></li>
</ul>
</nav>
<article>
<div>
<form>
<label for="name"><b>Name</style></b></label><br>
<input type="text" id="name" name="Name" placeholder="Type your Name"><br>
<label for="branch"><b>Branch</b></label><br>
<select id="branch" name="branch" placeholder="Select Your Branch"><br>
<option value="select"></option>
<option value="Architecture">Architecture</option>
<option value="Biochemical">Biochemical</option>
<option value="Biomedical">Biomedical</option>
<option value="Ceramic">Ceramic</option>
<option value="Chemical">Chemical</option>
<option value="Industrial Chemistry">Industrial Chemistry</option>
<option value="Civil">Civil</option>
<option value="Computer Science">Computer Science</option>
<option value="Electrical">Electrical</option>
<option value="Electronics">Electronics</option>
<option value="Material Sciences">Material Sciences</option>
<option value="Mathematics">Mathematics</option>
<option value="Mechanical">Mechanical</option>
<option value="Metallurgical">Metallurgical</option>
<option value="Mining">Mining</option>
<option value="Pharmaceutical">Pharmaceutical</option>
<option value="Physics">Physics</option>
</select>
<br>
<label for="email"><b>E-Mail</b></label><br>
<input type="email" pattern="[^ @]*@[^ @]*" id="email" placeholder="Type your email">
<br>
<label for="phno"><b>Contact No.</b></label><br>
<input type="tel" maxlength="10" id="phno" placeholder="Type your Contact no."><br><br>
<button type="submit" id="submit">Submit</button>
</form>
<script src="https://www.gstatic.com/firebasejs/10.0.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.0.0/firebase-firestore-compat.js"></script>
<script src="app.js"></script>
</div>
</article></section>
<footer>
<a href="https://www.ecelliitbhu.com/">
<img src="footerimg.png" width="10%" height="10%">
</a>
</footer>
</body>
</html>