-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (62 loc) · 2.51 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
<!DOCTYPE html>
<!-- Created By CodingLab - www.codinglabweb.com -->
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title> Startup Bootcamp </title>
<link rel="stylesheet" href="/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<div class="title">Start-Up Registration</div>
<div class="content">
<form action="#">
<div class="user-details">
<div class="input-box">
<span class="details">Startup Name</span>
<input type="text" placeholder="Enter your startup name" required>
</div>
<div class="input-box">
<span class="details">Founder Name</span>
<input type="text" placeholder="Enter Founder's name" required>
</div>
<div class="input-box">
<span class="details">Email</span>
<input type="email" placeholder="Enter your email" required>
</div>
<div class="input-box">
<span class="details">Phone Number</span>
<input type="tel" placeholder="Enter your number" pattern="[6-9]{3}-[0-9]{3}-[0-9]{3}" required/>
</div>
<div class="input-box">
<span class="details">Name of the Institute</span>
<input type="text" placeholder="Enter institute name" required/>
</div>
<div class="input-box">
<span class="details">Enter the number of team mates</span>
<input type="number" placeholder="Number of team mates" required/>
</div>
</div>
<div class="input-box">
<span class="details">Write about your idea</span>
<textarea id="textarea" name="textarea" rows="4" cols="95" required>Write about your startup idea</textarea>
</div>
<div class="input-box">
<span class="details">Upload your pitchdeck in ppt or pptx format</span>
<input type="file" accept=".xlsx,.xls,image/*,.doc, .docx,.ppt, .pptx,.txt,.pdf" required/>
</div>
<div class="button">
<input type="submit" value="Register">
</div>
</form>
<div class="nav">
<img src="images/E-Cell Logo.png" width="80px" height="50px"/>
<img src="images/sig1.png" width="150px" height="50px"/>
<img src="images/make in odisha.png" width="80px" height="50px"/>
<img src="images/startup odisha yatra.png" width="80px" height="50px"/>
</div>
</div>
</div>
</body>
</html>